shithub: mc

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