summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/expected/cpp/30952-sp_before_constr_colon.cpp
blob: ad0e38d59ba20501b91ba9788b282565263ee4a9 (plain)
1
2
3
4
struct MyClass : public Foo {
  MyClass(int a, int b, int c):
      m_a(a), m_b(b), m_c(c) {}
};