re PR testsuite/49432 (FAIL: obj-c++.dg/invalid-type-1.mm)

PR testsuite/49432
	* obj-c++.dg/invalid-type-1.mm: Adjust for new error wording.

From-SVN: r175178
This commit is contained in:
Jakub Jelinek 2011-06-18 14:56:56 +02:00 committed by Jakub Jelinek
parent 3547d57e35
commit 6e6224c1d0
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2011-06-18 Jakub Jelinek <jakub@redhat.com>
PR testsuite/49432
* obj-c++.dg/invalid-type-1.mm: Adjust for new error wording.
2011-06-18 Janus Weil <janus@gcc.gnu.org>
PR fortran/49400

View file

@ -18,8 +18,8 @@ id <MyProtocol> object; /* This is fine. */
AClass <MyProtocol> *object1; /* This is fine. */
Integer <MyProtocol> *object2; /* { dg-error ".Integer. is not a template" } */
Integer <MyProtocol> *object2; /* { dg-error ".Integer {aka int}. is not a template" } */
/* { dg-error ".MyProtocol. was not declared in this scope" "" { target *-*-* } 21 } */
Integer <NonExistingProtocol> *object3; /* { dg-error ".Integer. is not a template" } */
Integer <NonExistingProtocol> *object3; /* { dg-error ".Integer {aka int}. is not a template" } */
/* { dg-error ".NonExistingProtocol. was not declared in this scope" "" { target *-*-* } 24 } */