shithub: mc

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