Files @ ef64fd0cdb07
Branch filter:

Location: CSY/reowolf/testdata/parser/negative/27.pdl

Christopher Esterhuyse
correctly merging protocol component branches: forks that create existing predicates MERGE the results, combining their inboxes s.t. there is no race condition on the order of received messages
#version 100

int main(int a) {
	while (a >= 2) {
		a -= 2;
dupl:	while (a < 10) {
			a++;
			if (a % 5 == 0)
				break dupl;
		}
	}
	skip;
dupl:
	while (true) goto dupl;
}