shithub: mc

ref: 22824dad97a68c10ce71cf7e623a12e51be80c43
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
}