shithub: mc

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