summaryrefslogtreecommitdiff
path: root/test/dot_conditions.c--emit-dot.re
blob: 7e3f18a03b6408a2f7e6f689d706c2023ca32940 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
int main() {
	printf("some code that will be stripped");

/*!re2c

<state1>"abc"	{ return 1; }
<state2>"abc"	{ return 2; }
<state1>"foo"	{ return 3; }

*/

	printf("here too\n");
}