shithub: mc

ref: 5ca25b7878e0ae8e5843d46e650e3cd487f37080
dir: /test/usedef.myr/

View raw version
/*
should fail to compile because 'a' is used
before it is defined.
*/
const main = {
	var a : int
	std.exit(a)
}