Files @ a6f53f74e58c
Branch filter:

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

Christopher Esterhuyse
fixed bug: failed to restore !sync_batches.is_empty() invariant when the native is immediately inconsistent
#version 100

primitive main(in a, out b) {
	int x = 0;
	int y = 0;
	while (true) {
		synchronous (int x) { // illegal
			assert fires(a) == fires(b);
		}
	}
}