P1008R1 - prohibit aggregates with user-declared constructors
authorJakub Jelinek <jakub@redhat.com>
Tue, 31 Jul 2018 14:19:26 +0000 (16:19 +0200)
committerJakub Jelinek <jakub@gcc.gnu.org>
Tue, 31 Jul 2018 14:19:26 +0000 (16:19 +0200)
P1008R1 - prohibit aggregates with user-declared constructors
* class.c (check_bases_and_members): For C++2a set
CLASSTYPE_NON_AGGREGATE based on TYPE_HAS_USER_CONSTRUCTOR rather than
type_has_user_provided_or_explicit_constructor.

* g++.dg/ext/is_aggregate.C: Add tests with deleted or defaulted ctor.
* g++.dg/cpp0x/defaulted1.C (main): Ifdef out for C++2a B b = {1};.
* g++.dg/cpp0x/deleted2.C: Expect error for C++2a.
* g++.dg/cpp2a/aggr1.C: New test.
* g++.dg/cpp2a/aggr2.C: New test.

From-SVN: r263115

gcc/cp/ChangeLog
gcc/cp/class.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/cpp0x/defaulted1.C
gcc/testsuite/g++.dg/cpp0x/deleted2.C
gcc/testsuite/g++.dg/cpp2a/aggr1.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp2a/aggr2.C [new file with mode: 0644]
gcc/testsuite/g++.dg/ext/is_aggregate.C

index 128360794e8b403d43451c1e3ac282b834737fdd..bf6ce9761acb410de173674edaa2223391c8a321 100644 (file)
@@ -1,3 +1,10 @@
+2018-07-31  Jakub Jelinek  <jakub@redhat.com>
+
+       P1008R1 - prohibit aggregates with user-declared constructors
+       * class.c (check_bases_and_members): For C++2a set
+       CLASSTYPE_NON_AGGREGATE based on TYPE_HAS_USER_CONSTRUCTOR rather than
+       type_has_user_provided_or_explicit_constructor.
+
 2018-07-31  Martin Liska  <mliska@suse.cz>
 
         PR c++/86653
index d2f78088b949217ce78ffc3bc53a3736032ad100..c03a82b44f89661b80aed7c15713048512cc4abe 100644 (file)
@@ -5571,7 +5571,9 @@ check_bases_and_members (tree t)
      Again, other conditions for being an aggregate are checked
      elsewhere.  */
   CLASSTYPE_NON_AGGREGATE (t)
-    |= (type_has_user_provided_or_explicit_constructor (t)
+    |= ((cxx_dialect < cxx2a
+        ? type_has_user_provided_or_explicit_constructor (t)
+        : TYPE_HAS_USER_CONSTRUCTOR (t))
        || TYPE_POLYMORPHIC_P (t));
   /* This is the C++98/03 definition of POD; it changed in C++0x, but we
      retain the old definition internally for ABI reasons.  */
index 7aa44c20a6fa84895e65e998b9531ad2f1037346..90fb9c19a40d950bff85946b568cc2029136edd8 100644 (file)
@@ -1,3 +1,12 @@
+2018-07-31  Jakub Jelinek  <jakub@redhat.com>
+
+       P1008R1 - prohibit aggregates with user-declared constructors
+       * g++.dg/ext/is_aggregate.C: Add tests with deleted or defaulted ctor.
+       * g++.dg/cpp0x/defaulted1.C (main): Ifdef out for C++2a B b = {1};.
+       * g++.dg/cpp0x/deleted2.C: Expect error for C++2a.
+       * g++.dg/cpp2a/aggr1.C: New test.
+       * g++.dg/cpp2a/aggr2.C: New test.
+
 2018-07-31  Segher Boessenkool  <segher@kernel.crashing.org>
 
        PR target/86640
index 4956e88ed652702adb75277b289d776edc9296e2..0ed81fb26a9e076abdc057d877cffed9cc5dc7b1 100644 (file)
@@ -23,7 +23,9 @@ struct B
 int main()
 {
   A a1, a2;
+#if __cplusplus <= 201703L
   B b = {1};
+#endif
   a1 = a2;
 }
 
index 8590c49f3c5cee6b222f4f78ae2826686ff38ed1..5576be33bef819b092d2b0b3526d770a219e1f6f 100644 (file)
@@ -6,4 +6,4 @@ struct A {
  A() = delete;
 };
 
-A a = {1};
+A a = {1};     // { dg-error "could not convert" "" { target c++2a } }
diff --git a/gcc/testsuite/g++.dg/cpp2a/aggr1.C b/gcc/testsuite/g++.dg/cpp2a/aggr1.C
new file mode 100644 (file)
index 0000000..73a257c
--- /dev/null
@@ -0,0 +1,15 @@
+// { dg-do compile { target c++11 } }
+struct A {
+  A () = delete;       // { dg-message "declared here" "" { target c++2a } }
+};
+struct B {
+  B () = default;
+  int b = 0;
+};
+struct C {
+  C (C&&) = default;   // { dg-message "candidate" "" { target c++2a } }
+  int c, d;
+};
+A a {};                        // { dg-error "use of deleted function" "" { target c++2a } }
+B b = {1};             // { dg-error "could not convert" "" { target { c++11_only || c++2a } } }
+C *c = new C {2, 3};   // { dg-error "no matching function for call to" "" { target c++2a } }
diff --git a/gcc/testsuite/g++.dg/cpp2a/aggr2.C b/gcc/testsuite/g++.dg/cpp2a/aggr2.C
new file mode 100644 (file)
index 0000000..e774be7
--- /dev/null
@@ -0,0 +1,25 @@
+// { dg-do run { target c++11 } }
+
+struct A;
+struct B { operator A (); };
+struct A { A (const A &) = default; A () = default; B a; };
+A a {B {}};
+bool seen;
+
+B::operator A ()
+{
+  seen = true;
+  return A ();
+}
+
+int
+main ()
+{
+#if __cplusplus > 201703L
+  if (!seen)
+    __builtin_abort ();
+#else
+  if (seen)
+    __builtin_abort ();
+#endif
+}
index 8adc6c455f040500856f4b7e473d72a088d0b6ba..bdcc70fa7c228092e4d86998fcbbb4fd3f8c07d0 100644 (file)
@@ -61,6 +61,8 @@ struct K { int a, b; virtual void foo (); };
 struct L : virtual public A { int d, e; };
 struct M : protected A { int d, e; };
 struct N : private A { int d, e; };
+struct O { O () = delete; int a, b, c; };
+struct P { P () = default; int a, b, c; };
 typedef int T;
 typedef float U;
 typedef int V __attribute__((vector_size (4 * sizeof (int))));
@@ -94,6 +96,13 @@ main ()
   assert (NTEST (L));
   assert (NTEST (M));
   assert (NTEST (N));
+#if __cplusplus > 201703L
+  assert (NTEST (O));
+  assert (NTEST (P));
+#else
+  assert (PTEST (O));
+  assert (PTEST (P));
+#endif
   assert (PTEST (int[]));
   assert (PTEST (double[]));
   assert (PTEST (T[2]));
@@ -114,4 +123,6 @@ main ()
   assert (PTEST (L[]));
   assert (PTEST (M[6]));
   assert (PTEST (N[]));
+  assert (PTEST (O[]));
+  assert (PTEST (P[]));
 }