shithub: mc

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