shithub: mc

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