shithub: mc

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