summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/cpp/30131-Issue_3010.cpp
blob: 93fd70dbd9104fa36826da8f6b39d87ad3e369dd (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;
};