This file is indexed.

/usr/share/doc/pccts/examples/sorcerer/testcpp/t5.dat.out is in pccts 1.33MR33-6.

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
 8
 9
10
11
inital tree:  ( + c ( * a b ) )
after appending z to end of sibling list of '+':  ( + c ( * a b ) z )
after inserting an 'ack' after 'a':  ( + c ( * a ack b ) z )
after cutting between a and b:  ( + c ( * a b ) z )
ast_find_all reports id c
ast_find_all reports id a
ast_find_all reports id b
ast_find_all reports id z
after adding subtree (+ t) as child of initial '+':  ( + c ( * a b ) z ( + t ) )
number of children of top + tree is 4
ptr from 3rd child to end of siblings of top + tree is: z ( + t )