shithub: mc

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