shithub: mc

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