shithub: mc

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