summaryrefslogtreecommitdiffstats
path: root/clang/test/CXX/special/class.copy/p20.cpp
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2010-07-01 20:08:52 +0000
committerDouglas Gregor <dgregor@apple.com>2010-07-01 20:08:52 +0000
commit19ecba740fc90e7b408cd7b2209291ff25eda6cb (patch)
tree44a8b07ddcd8597a30a42b5f5bb54e60f791bcf9 /clang/test/CXX/special/class.copy/p20.cpp
parent84f90a387dd583285a329d4cbb4306919197bb79 (diff)
downloadbcm5719-llvm-19ecba740fc90e7b408cd7b2209291ff25eda6cb.tar.gz
bcm5719-llvm-19ecba740fc90e7b408cd7b2209291ff25eda6cb.zip
Test implicit declaration of copy assignment operator with non-const argument
llvm-svn: 107421
Diffstat (limited to 'clang/test/CXX/special/class.copy/p20.cpp')
-rw-r--r--clang/test/CXX/special/class.copy/p20.cpp46
1 files changed, 46 insertions, 0 deletions
diff --git a/clang/test/CXX/special/class.copy/p20.cpp b/clang/test/CXX/special/class.copy/p20.cpp
new file mode 100644
index 00000000000..8dfb7ca8a06
--- /dev/null
+++ b/clang/test/CXX/special/class.copy/p20.cpp
@@ -0,0 +1,46 @@
+// RUN: %clang_cc1 -fsyntax-only -verify %s
+
+struct ConstCopy {
+ ConstCopy();
+ ConstCopy &operator=(const ConstCopy&);
+};
+
+struct NonConstCopy {
+ NonConstCopy();
+ NonConstCopy &operator=(NonConstCopy&);
+};
+
+struct VirtualInheritsNonConstCopy : virtual NonConstCopy {
+ VirtualInheritsNonConstCopy();
+ VirtualInheritsNonConstCopy &operator=(const VirtualInheritsNonConstCopy&);
+};
+
+struct ImplicitNonConstCopy1 : NonConstCopy { // expected-note{{the implicit copy assignment operator}}
+ ImplicitNonConstCopy1();
+};
+
+struct ImplicitNonConstCopy2 { // expected-note{{the implicit copy assignment operator}}
+ ImplicitNonConstCopy2();
+ NonConstCopy ncc;
+};
+
+struct ImplicitNonConstCopy3 { // expected-note{{the implicit copy assignment operator}}
+ ImplicitNonConstCopy3();
+ NonConstCopy ncc_array[2][3];
+};
+
+struct ImplicitNonConstCopy4 : VirtualInheritsNonConstCopy {
+ ImplicitNonConstCopy4();
+};
+
+void test_non_const_copy(const ImplicitNonConstCopy1 &cincc1,
+ const ImplicitNonConstCopy2 &cincc2,
+ const ImplicitNonConstCopy3 &cincc3,
+ const ImplicitNonConstCopy4 &cincc4,
+ const VirtualInheritsNonConstCopy &vincc) {
+ (void)sizeof(ImplicitNonConstCopy1() = cincc1); // expected-error{{no viable overloaded '='}}
+ (void)sizeof(ImplicitNonConstCopy2() = cincc2); // expected-error{{no viable overloaded '='}}
+ (void)sizeof(ImplicitNonConstCopy3() = cincc3); // expected-error{{no viable overloaded '='}}
+ (void)sizeof(ImplicitNonConstCopy4() = cincc4); // okay
+ (void)sizeof(VirtualInheritsNonConstCopy() = vincc);
+}
OpenPOWER on IntegriCloud