summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/input/cpp/bug_1315.cpp
blob: 080c92339781a4d09b03039e99448254c03a95cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
dookie::wookie << "asd"
          << "bag"
                      << "sag";

typedef enum
{
        A = 0,
        B = 1 << 0,
        C = 1 << 1
};

enum
{
        A = 0,
        B = 1 << 0,
        C = 1 << 1
};