shithub: mc

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