summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/expected/cpp/30259-sp_after_constr_colon.cpp
blob: 7b63b6397149d7a0a1c54931d78d2f870bd75658 (plain)
1
2
3
4
5
6
struct MyClass : public Foo {
  MyClass(int a,
          int b,
          int c)
      :m_a(a), m_b(b), m_c(c) {}
};