shithub: mc

ref: 4d4598925d9381a2e2fa8f618cb03265d26b5468
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
}