shithub: mc

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