shithub: mc

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