shithub: mc

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