xref: /llvm-project/lldb/test/API/functionalities/limit-debug-info/foo.cpp (revision a03dc8c9fa8e9c5cf44448fac1a9ad0fdad7df41)
1*a03dc8c9SPavel Labath struct A {
2*a03dc8c9SPavel Labath   int a = 47;
3*a03dc8c9SPavel Labath   virtual ~A();
4*a03dc8c9SPavel Labath };
5*a03dc8c9SPavel Labath 
6*a03dc8c9SPavel Labath A::~A() = default;
7