shithub: mc

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