shithub: mc

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