re PR testsuite/49432 (FAIL: obj-c++.dg/invalid-type-1.mm)
authorJakub Jelinek <jakub@redhat.com>
Sat, 18 Jun 2011 12:56:56 +0000 (14:56 +0200)
committerJakub Jelinek <jakub@gcc.gnu.org>
Sat, 18 Jun 2011 12:56:56 +0000 (14:56 +0200)
PR testsuite/49432
* obj-c++.dg/invalid-type-1.mm: Adjust for new error wording.

From-SVN: r175178

gcc/testsuite/ChangeLog
gcc/testsuite/obj-c++.dg/invalid-type-1.mm

index 54d035e..7868b7b 100644 (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
index 2d6ba68..ace144f 100644 (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 } */