Files @ 3ebc282f2d0e
Branch filter:

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

mh
String literal testing, fix string escaping bug
#version 100

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