shithub: mc

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