shithub: mc

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