shithub: mc

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