shithub: mc

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