shithub: mc

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