shithub: mc

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