1// RUN: %clang_cc1 -triple %itanium_abi_triple -emit-llvm -o - %s | FileCheck %s
2
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_
12