shithub: mc

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