shithub: mc

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