shithub: mc

ref: f8f5b71ca85fed63d295f50e3f45ba3230edaead
dir: /test/usedef.myr/

View raw version
use std

/*
should fail to compile because 'a' is used
before it is defined.
*/
const main = {
	var a : int
	std.exit(a)
}