shithub: mc

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