shithub: mc

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