shithub: mc

ref: b623656b7898648e82dcc0adc5c4d03a5ba9b5da
dir: /test/declmismatch.myr/

View raw version
use std
/*
should fail to compile with a type error.
char is incompatible with int.
*/
const main = {
	var a : int
	var b : char

	a = b
}