]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* g++.dg/template/incomplete2.C: Fix error marker.
authorVolker Reichelt <reichelt@igpm.rwth-aachen.de>
Sun, 7 May 2006 20:32:34 +0000 (20:32 +0000)
committerVolker Reichelt <reichelt@gcc.gnu.org>
Sun, 7 May 2006 20:32:34 +0000 (20:32 +0000)
From-SVN: r113606

gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/template/incomplete2.C

index 154e72aa51c6e177c1da64f3cde478aa0e16f82c..3644eff079b3646429695118009693c7f3e5b7fe 100644 (file)
@@ -1,3 +1,7 @@
+2006-05-07  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
+
+       * g++.dg/template/incomplete2.C: Fix error marker.
+
 2006-05-06  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
 
        PR c++/27427
index 23d393e99df097cd1201df6f4ccff0a535ebaf00..368e39373d3db07f6415206a7c6da5d4b740a3d9 100644 (file)
@@ -5,7 +5,7 @@ struct A;
 
 template<A&> void foo();
 
-A a;  // { dg-error "incomplete type" }
+A a;  // { dg-error "incomplete type|storage size" }
 
 void bar()
 {