shithub: mc

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