shithub: mc

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