shithub: mc

ref: 07c78ed9c77feed62b7f306049ed3c90d4753024
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)
}