shithub: mc

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

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

	a = b
}