shithub: mc

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