shithub: mc

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