shithub: mc

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