shithub: mc

ref: 03ce0ae18518e2686e8b30e25cf47e2ad1afe6ad
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)
}