freebsd-dev/test/CodeGenCXX/copy-assign-synthesis-2.cpp
2010-01-01 10:34:51 +00:00

5 lines
159 B
C++

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