shithub: mc

ref: bbf152c2fe0b743e8a85ff208f6b19a3d631c78a
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
}