shithub: mc

ref: 906384e5b4f4d1dfbf045184717668fe99610d53
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
}