shithub: mc

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