shithub: mc

ref: 231f122bcbc9010decfaae7942916d7ce948767d
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
}