shithub: mc

ref: 0af648321d764657b71a996be5397ecdb9e7d600
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
}