shithub: mc

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