blob: 18e92f98ebdef8789e5aafabe5fe39b9e92ecd9b [file] [log] [blame]
// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
struct A {};
A& (A::*x)(const A&) = &A::operator=;
// CHECK-LABEL: define linkonce_odr %struct.A* @_ZN1AaSERKS_