shithub: mc

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