shithub: mc

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