shithub: mc

ref: 59d49a9789ad8fae0d464e3e60e1196d7d861d18
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
}