summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/expected/cpp/60077-indent_ctor_init.cpp
blob: acf8c26827d60f2099b8c00b5ff6c4529e433695 (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 {};