shithub: mc

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