freebsd-dev/test/CodeGenCXX/copy-assign-synthesis-2.cpp

5 lines
159 B
C++
Raw Normal View History

2010-01-01 10:34:51 +00:00
// RUN: %clang_cc1 -emit-llvm %s -o - | FileCheck %s
2009-12-01 11:08:04 +00:00
struct A {};
A& (A::*x)(const A&) = &A::operator=;
// CHECK: define linkonce_odr %struct.A* @_ZN1AaSERKS_