summaryrefslogtreecommitdiffstats
path: root/test/CodeGenCXX/copy-assign-synthesis-2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGenCXX/copy-assign-synthesis-2.cpp')
-rw-r--r--test/CodeGenCXX/copy-assign-synthesis-2.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/CodeGenCXX/copy-assign-synthesis-2.cpp b/test/CodeGenCXX/copy-assign-synthesis-2.cpp
new file mode 100644
index 0000000..60d52f5
--- /dev/null
+++ b/test/CodeGenCXX/copy-assign-synthesis-2.cpp
@@ -0,0 +1,4 @@
+// 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_
OpenPOWER on IntegriCloud