]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/Import/inherited-ctor-init-expr/Inputs/A.cpp
Vendor import of clang trunk r338150:
[FreeBSD/FreeBSD.git] / test / Import / inherited-ctor-init-expr / Inputs / A.cpp
1 class A {
2 public:
3   A(int a) : a(a) {}
4   int a;
5 };
6 class B : public A {
7   using A::A;
8 };
9 class C : public B {
10   C() : B(1) {}
11 };