shithub: mc

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