summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/cpp/30086-align_class-constr.cpp
blob: f60820282446cc34c3d26ef2469fe57f048ef23b (plain)
1
2
3
4
5
6
7
8
9
10
class foo : public my_Class
{
    void bar_c(int tttt, int uu, int abc, int defxx)
        : tttt   (4444)
        , uu     (22)
        , abc    (333)
        , defxx  (55555)
    {
    }
}