shithub: mc

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