shithub: mc

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