shithub: mc

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