shithub: mc

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