shithub: mc

ref: 314b2c1651a2c946a3d9e3ccdd9fff739e603b2b
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
}