shithub: mc

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