shithub: mc

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