Files @ 0b0b0a9c786b
Branch filter:

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

MH
WIP: Restructured test, new bugs
#version 100

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