shithub: mc

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