OSDN Git Service

Backported from mainline
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / obj-c++.dg / method-7.mm
index e9e2d3a..85abf7d 100644 (file)
@@ -1,6 +1,5 @@
 /* Check if sending messages to "underspecified" objects is handled gracefully.  */
 /* Author: Ziemowit Laski <zlaski@apple.com>.  */
-
 /* { dg-do compile } */
 
 @class UnderSpecified;
@@ -10,10 +9,12 @@ typedef struct NotAClass {
 
 void foo(UnderSpecified *u, NotAClass *n) {
   [n nonexistent_method];    /* { dg-warning "invalid receiver type" } */
-       /* { dg-warning "no .\\-nonexistent_method. method found" "" { target *-*-* } 12 } */
+       /* { dg-warning "no .\\-nonexistent_method. method found" "" { target *-*-* } 11 } */
   [NotAClass nonexistent_method]; /* { dg-error ".NotAClass. is not an Objective\\-C class name or alias" } */
-  [u nonexistent_method]; /* { dg-warning "no .\\-nonexistent_method. method found" } */
-  [UnderSpecified nonexistent_method]; /* { dg-warning "no .\\+nonexistent_method. method found" } */
+  [u nonexistent_method];    /* { dg-warning ".interface of class .UnderSpecified. not found" } */
+                             /* { dg-warning "no .\\-nonexistent_method. method found" "" { target *-*-* } 14 } */
+  [UnderSpecified nonexistent_method]; /* { dg-warning ".interface of class .UnderSpecified. not found" } */
+                                       /* { dg-warning "no .\\+nonexistent_method. method found" "" { target *-*-* } 16 } */
 }
 
 /* { dg-warning "Messages without a matching method signature" "" { target *-*-* } 0 } */