shithub: mc

ref: 14ea54572c7c46f86c990f5a22b3aab768e3d2be
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
}