re PR c++/85070 (ICE on C++ code: in lazily_declare_fn, at cp/method.c:2409)
authorJakub Jelinek <jakub@redhat.com>
Thu, 11 Oct 2018 18:35:11 +0000 (20:35 +0200)
committerJakub Jelinek <jakub@gcc.gnu.org>
Thu, 11 Oct 2018 18:35:11 +0000 (20:35 +0200)
PR c++/85070
* g++.dg/cpp0x/pr85070.C: Change effective target for diagnostics from
c++14_only to c++14.

From-SVN: r265052

gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/cpp0x/pr85070.C

index acac188edfddd0dcc3ff5a704d4e009fbb8ff678..4bca601358fc82de8691406e9f593a045e730b79 100644 (file)
@@ -1,3 +1,9 @@
+2018-10-11  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c++/85070
+       * g++.dg/cpp0x/pr85070.C: Change effective target for diagnostics from
+       c++14_only to c++14.
+
 2018-10-11  David Malcolm  <dmalcolm@redhat.com>
 
        * lib/multiline.exp (dg-begin-multiline-output): Issue an error if
index c1c5b23fd81f06dab8d1078ab835c63eb9a643c3..a8b1c5013b6d8f91dfa0a16c730d1fc86d0b7ba9 100644 (file)
@@ -4,10 +4,10 @@ struct A;
 
 struct B
 {
-  constexpr A & operator= (const A &);  // { dg-warning "used" "" { target c++14_only } }
+  constexpr A & operator= (const A &);  // { dg-warning "used" "" { target c++14 } }
 };
 
-struct A : B  // { dg-error "cannot be overloaded" "" { target c++14_only } }
+struct A : B  // { dg-error "cannot be overloaded" "" { target c++14 } }
 {
   using B::operator=;
 } a { a = a };