shithub: mc

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