Files @ d87415c6ea52
Branch filter:

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

mh
WIP: Fix bugs during multithreading as well
#version 100

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