Files @ 8dbdf7022aaf
Branch filter:

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

MH
Initial union implementation

Still untested, but: make union declaration implicit (so no longer
inferred from 'enum' use), and initial implementation of type
inference.
#version 100

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