shithub: mc

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