summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/input/cpp/sp_after_constr_colon.cpp
blob: caea467a5e5bf4e56ecd17a6ebb0a1dc2bd5fc46 (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) {}
};