shithub: mc

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