shithub: mc

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