shithub: mc

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