shithub: mc

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