shithub: mc

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