shithub: mc

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