shithub: mc

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