shithub: mc

ref: 4ef66b11ded8bc99387219a81328d33c775ce7a9
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
}