shithub: mc

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