shithub: mc

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