shithub: mc

ref: d619645586593515ab9b589f97006975c5fa3d5e
dir: /test/usedef.myr/

View raw version
/*
should fail to compile because 'a' is used
before it is defined.
*/
const main = {
	var a : int
	std.exit(a)
}