shithub: mc

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