shithub: mc

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