shithub: mc

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