shithub: mc

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