shithub: mc

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