shithub: mc

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