shithub: mc

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