Files @ f2dca476327a
Branch filter:

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

Hans-Dieter Hiep
Fixes fall-through component definition error
#version 100

// sync block nested twice in primitive
primitive main(in a, out b) {
	while (true) {
		synchronous {
			synchronous {}
		}
	}
}