blob: 031046597e8b377546a0d6c30f306173431ae585 [file] [log] [blame]
Stephen Hines651f13c2014-04-23 16:59:28 -07001// RUN: %clang_cc1 -triple %itanium_abi_triple -emit-llvm -o - %s | FileCheck %s
Shih-wei Liaoea285162010-06-04 12:34:56 -07002
3struct D;
4struct B {
5 virtual D& operator = (const D&);
6};
7struct D : B { D(); virtual void a(); };
8void D::a() {}
9
10// CHECK: @_ZTV1D = {{.*}} @_ZN1DaSERKS_
11// CHECK: define linkonce_odr {{.*}} @_ZN1DaSERKS_