Files @ d8148185e205
Branch filter:

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

MH
finished initial type inferencer/checker, tests work again
#version 100

primitive main(in a) {
	while (true) {
		synchronous {
			if (fires(a)) {
				return 5;
			} else {
				block(a);
			}
		}
	}
}