shithub: mc

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