shithub: mc

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