c++: improve template/crash90.C
authorJason Merrill <jason@redhat.com>
Mon, 18 Oct 2021 14:15:42 +0000 (10:15 -0400)
committerJason Merrill <jason@redhat.com>
Mon, 18 Oct 2021 14:21:16 +0000 (10:21 -0400)
In r208350 I improved the diagnostic location of the initializer-list
pedwarn in C++98 mode on crash90.C, but didn't adjust the testcase to verify
the location, so reverting that change didn't break regression testing.

gcc/testsuite/ChangeLog:

* g++.dg/template/crash90.C: Check location of pedwarn.

gcc/testsuite/g++.dg/template/crash90.C

index 125ab0a..fee7dc5 100644 (file)
@@ -4,5 +4,6 @@ template < unsigned >
 struct A ;
 template < typename >
 struct B ;
-template < typename T , A < B < T > {} // { dg-error "parse error|non-type|initializer" }
+template < typename T , A < B < T > {} // { dg-error "parse error|non-type" }
 // { dg-error "39:expected" "" { target *-*-* } .-1 }
+// { dg-error "37:initializer list" "" { target c++98_only } .-2 }