shithub: mc

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