[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / CodeGenCXX / default-destructor-nested.cpp
blob77b06d639f4c8c6f5ed28d2b1922d8401c99108d
1 // RUN: %clang_cc1 %s -triple %itanium_abi_triple -emit-llvm-only
2 // PR6294
4 class A {
5 public: virtual ~A();
6 };
7 class B {
8 class C;
9 };
10 class B::C : public A {
11 C();
13 B::C::C() {}