shithub: mc

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