shithub: mc

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