shithub: mc

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