On 07/13/2015 09:41 AM, Paolo Carlini wrote:
+++ testsuite/g++.dg/template/crash81.C (working copy) @@ -3,6 +3,6 @@ struct A { template<T::X> struct X; // { dg-error "'T' has not been declared" "T" } - // { dg-error "declaration of 'template<int X> struct A::X'" "A::X" { target *-*-* } 5 } - // { dg-error "shadows template parm 'int X'" "shadow" { target *-*-* } 5 } + // { dg-error "declaration of 'template<int X> struct A::X' shadows" "A::X" { target *-*-* } 5 } + // { dg-message "template parameter 'X'" "" { target *-*-* } 5 }
I don't see any reason to check for specific diagnostics here; the latter two messages are poor error-recovery, not something to test for.
OK with that change. Jason