Files @ 7b9df91324ad
Branch filter:

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

Christopher Esterhuyse
fixed unintentional name collisions in socket-micking API
#version 100

primitive main(in a) {
	while (true) {
		synchronous {
			if (fires(a)) {
				return 5;
			} else {
				block(a);
			}
		}
	}
}