summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/expected/cpp/30301-enum_class.h
blob: 7ad5e9ea14b3fc6755aa4c8be2dc5b2e8b0112c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
enum class A
{
    a,
    b

}

enum struct D
{
    a,
    b

}

class B {
private:
int x;
}
enum C
{
    a,
    b

}