shithub: mc

ref: a9c6f053de3a54b55fa10ad07c5a94c76e854f58
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)
}