Files @ 7e4b7b7026e6
Branch filter:

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

Christopher Esterhuyse
simplified examples and added more user interaction
#version 100

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