shithub: mc

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