shithub: mc

ref: 63780713d12f169f36b758d1b4cc7a1dc60f459e
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
}