shithub: mc

ref: 9f1ac5b4a1f2bb17b145c37f22bfc1b06432220e
dir: /test/usedef.myr/

View raw version
use std

/*
should fail to compile because 'a' is used
before it is defined.
*/
const main = {
	var a : int
	std.exit(a)
}