shithub: mc

ref: 0d44442f0e5519ca65eb787896fbed5ac9246ab1
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
}