shithub: mc

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