shithub: mc

ref: 1b56041cec12b718c7c049d7739ffe73f0fcd53b
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
}