shithub: mc

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