brintos

brintos / llvm-project-archived public Read only

0
0
Text · 187 B · 58f9e0b Raw
22 lines · cpp
1// RUN: %clang_cc1 -emit-llvm-only -triple %itanium_abi_triple %s2struct A3{4A();    5virtual ~A();6};7 8struct B: A9{10  B();11  ~B();12};13 14B::B()15{16}17 18B::~B()19{20}21                         22