shithub: mc

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