Files @ 3845071002b0
Branch filter:

Location: CSY/reowolf/testdata/parser/negative/10.pdl - annotation

mh
reorganization of evaluator, WIP on hooking up to old system
#version 100

// sync block nested in sync block
primitive main(in a, out b) {
	while (true) {
		synchronous {
			if (false || true) {
				synchronous {
					skip;
				}
			}
		}
	} 
}