shithub: mc

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