shithub: mc

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