shithub: mc

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