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-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b1ce66fa69ba89a8a63da74780283bff20f98331;p=gcc.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 8a3112e2344..903cab85cd2 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 } } }