shithub: mc

ref: 1bf649bb8a77d72a5333d6290776b436c86e3134
dir: /test/declmismatch.myr/

View raw version
use std
/*
should fail to compile with a type error.
char is incompatible with int.
*/
const main = {
	var a : int
	var b : char

	a = b
}