shithub: mc

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