shithub: mc

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