shithub: mc

ref: 3c4b4fecaf3841b492c75b6dacbc7b68c6aa1703
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
}