shithub: mc

ref: b1eb90e0d575a1016ef176a8cea9735e5420fb8a
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
}