shithub: mc

ref: 3bbb5e43836cd3ea0df46d6adea3dbedd678785f
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
}