copy-assign-synthesis-2.cpp revision 15233e5a4d98b66b3c6cfcc4e6413ad776a79481
1// RUN: clang-cc -emit-llvm %s -o - | FileCheck %s
2struct A {};
3A& (A::*x)(const A&) = &A::operator=;
4// CHECK: define linkonce_odr %struct.A* @_ZN1AaSERKS_
5