]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libstdc++-v3/testsuite/23_containers/vector/requirements/dr438/assign_neg.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 23_containers / vector / requirements / dr438 / assign_neg.cc
index f0fae0083ba3ff5896200c1a21b2a95c59c4137f..2d84426c863270cfec0f5e58dade923b9b43fcbf 100644 (file)
@@ -1,6 +1,6 @@
 // 2007-04-27  Paolo Carlini  <pcarlini@suse.de>
 
-// Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation
+// Copyright (C) 2007-2017 Free Software Foundation, Inc.
 //
 // This file is part of the GNU ISO C++ Library.  This library is free
 // software; you can redistribute it and/or modify it under the
@@ -18,8 +18,7 @@
 // <http://www.gnu.org/licenses/>.
 
 // { dg-do compile }
-// { dg-error "no matching" "" { target *-*-* } 1055 }
-// { dg-excess-errors "" }
+// { dg-prune-output "no matching function .*_M_fill_assign" }
 
 #include <vector>
 
@@ -31,5 +30,5 @@ struct A
 void f()
 {
   std::vector<A> v;
-  v.assign(10, 1);
+  v.assign(10, 1);             // { dg-error "here|no match" }
 }