shithub: mc

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