shithub: mc

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