7 lines
74 B
C++
7 lines
74 B
C++
// RUN: clang-cc -emit-llvm-only -g %s
|
|
struct X {
|
|
~X();
|
|
};
|
|
|
|
X::~X() { }
|