shithub: mc

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