brintos

brintos / llvm-project-archived public Read only

0
0
Text · 196 B · 144fde6 Raw
12 lines · cpp
1// RUN: %clang_cc1 -fsyntax-only -verify %s2// expected-no-diagnostics3 4struct X { ~X(); };5template <typename T>6struct A {7  struct B { X x; };8  struct C : public B {9    C() : B() { }10  };11};12