shithub: mc

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