summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/expected/cpp/60076-indent_ctor_init.cpp
blob: 872961cef20a0a62b88611b84622e0d71822fd17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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 {};