shithub: mc

ref: 23626785a460ead2c439e2b73209b9b1dc83d552
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
}