summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.74.0/tests/input/cpp/Issue_3010.cpp
blob: b546e7be4d2859071ce189d0c5e675d3d23f24e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
namespace SomeLongNamespaceName {
class Foo { };
}

class Bar : SomeLongNamespaceName::Foo {
public:
Bar()
        : SomeLongNamespaceName::Foo(),
             myNumber(3), // <-- this line
             myOtherNumber(5)
{
}
private:
int myNumber;
int myOtherNumber;
};