Files @ 0c617cc162dd
Branch filter:

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

Christopher Esterhuyse
conitnued continuing refactor (safe state) nonsyncprotocontext now correctly uses the rollback-safe current_state structure for modifying port information
#version 100

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