shithub: mc

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