* g++.dg/template/crash126.C: Second error doesn't apply to C++17.

From-SVN: r247840
This commit is contained in:
Jason Merrill 2017-05-10 11:53:48 -04:00
parent 8e5f30dca0
commit b1ce66fa69

View File

@ -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 } }
}