shithub: mc

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