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