shithub: mc

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