This file is indexed.

/usr/include/wibble/strongenumflags.test.h is in libwibble-dev 1.1-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
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#if __cplusplus >= 201103L
#include <wibble/strongenumflags.h>
#endif

#include <wibble/test.h>

using namespace wibble;

#if __cplusplus >= 201103L
enum class A : unsigned char  { X = 1, Y = 2, Z = 4 };
enum class B : unsigned short { X = 1, Y = 2, Z = 4 };
enum class C : unsigned       { X = 1, Y = 2, Z = 4 };
enum class D : unsigned long  { X = 1, Y = 2, Z = 4 };
#endif

struct TestStrongEnumFlags {
#if __cplusplus >= 201103L
    template< typename Enum >
    void testEnum() {
        StrongEnumFlags< Enum > e1;
        StrongEnumFlags< Enum > e2( Enum::X );

        assert( !e1 );
        assert( e2 );

        assert( e1 | e2 );
        assert( Enum::X | Enum::Y );
        assert( e2 | Enum::Z );
        assert( e2.has( Enum::X ) );

        assert( e2 & Enum::X );
        assert( !( Enum::X & Enum::Y ) );

        assert( Enum::X | Enum::Y | Enum::Z );
        assert( !( Enum::X & Enum::Y & Enum::Z ) );
        assert( ( Enum::X | Enum::Y | Enum::Z ) & Enum::X );
    }
#endif

#if __cplusplus >= 201103L
    // we don't want to break classical enums and ints by out operators
    Test regression() {
        enum Classic { C_X = 1, C_Y = 2, C_Z = 4 };

        assert( C_X | C_Y | C_Z );
        assert( 1 | 2 | 4 );
        assert( C_X & 1 );
    }

    Test enum_uchar() { testEnum< A >(); }
    Test enum_ushort() { testEnum< B >(); }
    Test enum_uint() { testEnum< C >(); }
    Test enum_ulong() { testEnum< D >(); }
#else /* FIXME work around issues with non-C++11 builds */
    void regression() {}
    void enum_uchar() {}
    void enum_ushort() {}
    void enum_uint() {}
    void enum_ulong() {}
#endif
};