freebsd-nq/test/CodeGenCXX/copy-assign-synthesis-2.cpp
2009-12-01 11:08:04 +00:00

5 lines
157 B
C++

// RUN: clang-cc -emit-llvm %s -o - | FileCheck %s
struct A {};
A& (A::*x)(const A&) = &A::operator=;
// CHECK: define linkonce_odr %struct.A* @_ZN1AaSERKS_