shithub: mc

ref: 6041d0a1d135a8085dad7a76ec66dc42151065ab
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
}