shithub: mc

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