shithub: mc

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