shithub: mc

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