shithub: mc

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