shithub: mc

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