shithub: mc

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