shithub: mc

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