xref: /llvm-project/clang/test/CodeGenCXX/copy-assign-synthesis-2.cpp (revision 1b9a6e58a8b831193c9e5e733f881aabe0d2d06b)
1 // RUN: %clang_cc1 -triple %itanium_abi_triple -emit-llvm %s -o - | FileCheck %s
2 struct A {};
3 A& (A::*x)(const A&) = &A::operator=;
4 // CHECK-LABEL: define linkonce_odr {{.*}}ptr @_ZN1AaSERKS_
5