shithub: mc

ref: 81f4aba2c5d9deec72312b0398209fcdb8439583
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)
}