diff options
Diffstat (limited to 'clang/test/CodeGenCXX/copy-assign-synthesis-2.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/copy-assign-synthesis-2.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/test/CodeGenCXX/copy-assign-synthesis-2.cpp b/clang/test/CodeGenCXX/copy-assign-synthesis-2.cpp new file mode 100644 index 0000000..c25e046 --- /dev/null +++ b/clang/test/CodeGenCXX/copy-assign-synthesis-2.cpp @@ -0,0 +1,4 @@ +// 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_ |