summaryrefslogtreecommitdiff
path: root/test/input8.re
blob: 2a57f414478e0b01710e47f20c1d7cf738e90581 (plain)
1
2
3
4
5
6
7
8
9
/*!re2c

any = [\000-\377];

.{1,3}"\000"       { return 0; }
.                  { return 1; }
any                { return 2; }

*/