shithub: mc

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