shithub: mc

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