summaryrefslogtreecommitdiffstats
path: root/clang/test/CodeGenCXX/default-destructor-nested.cpp
blob: 2afa9cf391a5af5f7a9612a56a5cdf100686eda8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// RUN: %clang_cc1 %s -cxx-abi itanium -emit-llvm-only
// PR6294

class A {
public: virtual ~A();
};
class B {
  class C;
};
class B::C : public A {
  C();
};
B::C::C() {}
OpenPOWER on IntegriCloud