summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/cpp/30953-constr_colon.cpp
blob: 6c0706e5ef7886b10b3bd8cbd87c858122007fde (plain)
1
2
3
4
5
6
7
8
9
class foo
{
   void bar_c(int t, int u)
      : t(222)
      , u(88)
   {
      // code
   }
};