shithub: mc

ref: 527b74f79517336b3ef11c963e86658527aa96cd
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
}