summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/expected/cpp/30955-indent_ctor_init.cpp
blob: 55982328472e87366aa08a76a1bcb143d90c6425 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
struct MyClass : public Foo,
                 private Bar {
  MyClass(
      int a,
      int b,
      int c)
      : m_a(a),
        m_b(b),
        m_c(c) {}

 private:
  int m_a, m_b, m_c;
};

struct TheirClass
      : public Foo,
        private Bar {};