shithub: mc

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