shithub: mc

ref: 547d6b96e5536f97d161e0a6544344534af3bde2
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
}