shithub: mc

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