shithub: mc

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