shithub: mc

ref: 16aa8c14d53c4d2e55651d64de26c68f23f21824
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
}