shithub: mc

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