blob: b8ecb406dd1e580da2523060d6b36d674b34ef2e [file] [log] [blame]
Hans Wennborg442e4f72013-12-13 22:43:52 +00001// RUN: %clang_cc1 -cxx-abi itanium -emit-llvm -std=c++11 -o - %s | FileCheck %s
Richard Smith966c1fb2011-12-24 21:56:24 +00002
3struct D;
4struct B {
5 virtual D &operator=(D&&) = 0;
6};
7struct D : B { D(); virtual void a(); };
8void D::a() {}
9D d;
10
11// CHECK: @_ZTV1D = {{.*}} @_ZN1DaSEOS_
12// CHECK: define linkonce_odr {{.*}} @_ZN1DaSEOS_