xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenCXX/copy-assign-synthesis-2.cpp (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
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 {{.*}}%struct.A* @_ZN1AaSERKS_
5