shithub: mc

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