This file is indexed.

/usr/share/doc/libqxmlrpc-doc/examples/client/main.cpp is in libqxmlrpc-doc 0.0.svn6-2.

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
#include <QApplication>

#include "testclient.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    TestClient client;
    client.show();
    return app.exec();
}