1 // RUN: %clang_cc1 -emit-llvm -debug-info-kind=standalone -triple x86_64-linux-gnu -o - -x c++ %s | FileCheck %s 2 f(struct X *)3void f(struct X *) {} 4 5 // CHECK: @_ZTV1X = 6 struct X { aX7 void a() { delete this; } ~XX8 virtual ~X() {} 9 virtual void key_function(); 10 }; 11 12 // CHECK: define {{.*}} @_ZN1X12key_functionEv( key_function()13void X::key_function() {} 14