shithub: mc

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