shithub: mc

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