shithub: mc

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