shithub: mc

ref: d85412f121b5a4bcb8f0e80fd094de363d490117
dir: /test/usedef.myr/

View raw version
use std

/*
should fail to compile because 'a' is used
before it is defined.
*/
const main = {
	var a : int
	std.exit(a)
}