llvm-project/clang/test/CodeGenCXX/PR4890-debug-info-dtor.cpp

7 lines
76 B
C++

// RUN: %clang_cc1 -emit-llvm-only -g %s
struct X {
~X();
};
X::~X() { }