shithub: mc

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