shithub: mc

ref: 9d5831fb236f42fe126160c339a70452ef0fa460
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
}