brintos

brintos / llvm-project-archived public Read only

0
0
Text · 130 B · 3ca7b6d Raw
9 lines · cpp
1// RUN: %clang_cc1 %s -triple %itanium_abi_triple -emit-llvm-only2 3struct A { virtual ~A(); };4struct B : A {5  ~B() { }6};7B x;8 9