shithub: mc

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