1*0a6a1f1dSLionel Sambuc // RUN: %clang_cc1 -triple %itanium_abi_triple -emit-llvm -std=c++11 -o - %s | FileCheck %s 2f4a2713aSLionel Sambuc 3f4a2713aSLionel Sambuc struct D; 4f4a2713aSLionel Sambuc struct B { 5f4a2713aSLionel Sambuc virtual D &operator=(D&&) = 0; 6f4a2713aSLionel Sambuc }; 7f4a2713aSLionel Sambuc struct D : B { D(); virtual void a(); }; a()8f4a2713aSLionel Sambucvoid D::a() {} 9f4a2713aSLionel Sambuc D d; 10f4a2713aSLionel Sambuc 11f4a2713aSLionel Sambuc // CHECK: @_ZTV1D = {{.*}} @_ZN1DaSEOS_ 12f4a2713aSLionel Sambuc // CHECK: define linkonce_odr {{.*}} @_ZN1DaSEOS_ 13