shithub: mc

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