shithub: mc

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