shithub: mc

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