shithub: mc

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