shithub: mc

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