shithub: mc

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