shithub: mc

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