shithub: mc

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