shithub: mc

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