shithub: mc

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