This file is indexed.

/usr/share/doc/re2c/examples/sample.re is in re2c 0.13.5-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

1
2
3
4
5
6
7
/*!re2c
	"print"		{return PRINT;}
	[a-z]+		{return ID;}
	[0-9]+		{return DEC;}
	"0x" [0-9a-f]+	{return HEX;}
	[\000-\377]	{return ERR;}
*/