shithub: mc

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