shithub: mc

ref: 01cc3d9ca848f41740eff61c88df70cf7fd9a1cf
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
}