shithub: mc

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