shithub: mc

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