shithub: mc

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