shithub: mc

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