shithub: mc

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