shithub: mc

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