Files @ 3f6d45f84e76
Branch filter:

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

Christopher Esterhuyse
trivial sync reintegrated. debug improvements. more logging
#version 100

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