shithub: mc

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