shithub: mc

ref: 6aeba77ec718b9c0104a5b86da52cbdd1416011f
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)
}