shithub: mc

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