shithub: mc

ref: 80c52bc20a53ac4c1c304df7a1e470c0ab62c576
dir: /test/usedef.myr/

View raw version
/*
should fail to compile because 'a' is used
before it is defined.
*/
const main = {
	var a : int
	std.exit(a)
}