shithub: mc

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