shithub: mc

ref: 08871fe6b8e6161e988e1aa52a59da792273ab4a
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
}