shithub: mc

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