shithub: mc

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