shithub: mc

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