shithub: mc

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