shithub: mc

ref: 584573b4e02d292655dd7e65095a76715e0b64dd
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
}