shithub: mc

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