shithub: mc

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