shithub: mc

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