shithub: mc

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