shithub: mc

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