shithub: mc

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