From: Jason Merrill Date: Wed, 10 May 2017 15:53:48 +0000 (-0400) Subject: * g++.dg/template/crash126.C: Second error doesn't apply to C++17. X-Git-Tag: basepoints/gcc-9~7437 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b1ce66fa69ba89a8a63da74780283bff20f98331;p=thirdparty%2Fgcc.git * g++.dg/template/crash126.C: Second error doesn't apply to C++17. From-SVN: r247840 --- diff --git a/gcc/testsuite/g++.dg/template/crash126.C b/gcc/testsuite/g++.dg/template/crash126.C index 8a3112e23442..903cab85cd28 100644 --- a/gcc/testsuite/g++.dg/template/crash126.C +++ b/gcc/testsuite/g++.dg/template/crash126.C @@ -9,5 +9,5 @@ template < class T, class > struct A void f () { - A < int, int > (A < int, int >()); // { dg-error "cannot bind" } + A < int, int > (A < int, int >()); // { dg-error "cannot bind" "" { target c++14_down } } }