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