shithub: mc

ref: fcb38bff6b06d23a3499bd13bc683754cb10dec0
dir: /test/usedef.myr/

View raw version
use std

/*
should fail to compile because 'a' is used
before it is defined.
*/
const main = {
	var a : int
	std.exit(a)
}