summaryrefslogtreecommitdiff
path: root/test/bug1711240.ei.re
blob: a6065e7b4e00721bc1a759e4edfd63779c3fe2f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
char scan(const unsigned char *s)
{
/*!re2c
	'"'
	{
		return '"';
	}
	"\x2F"
	{
		return '\x2F';
	}
	"\x7F"
	{
		return '\x7F';
	}
	[^]
	{
		return '\0';
	}
*/
}