shithub: mc

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