shithub: mc

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