shithub: mc

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