shithub: mc

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