OSDN Git Service

* objc.dg/stabs-1.m: Allow section name to be quoted and
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / objc.dg / method-5.m
1 /* Check if sending messages to "underspecified" objects is handled gracefully.  */
2 /* Author: Ziemowit Laski <zlaski@apple.com>.  */
3 /* { dg-do compile } */
4
5 @class UnderSpecified;
6 typedef struct NotAClass {
7   int a, b;
8 } NotAClass;
9
10 void foo(UnderSpecified *u, NotAClass *n) {
11   [n nonexistent_method];    /* { dg-warning "invalid receiver type" } */
12        /* { dg-warning "no .\\-nonexistent_method. method found" "" { target *-*-* } 11 } */
13   [NotAClass nonexistent_method]; /* { dg-error ".NotAClass. is not an Objective\\-C class name or alias" } */
14   [u nonexistent_method]; /* { dg-warning ".UnderSpecified. may not respond to .\\-nonexistent_method." } */
15   [UnderSpecified nonexistent_method]; /* { dg-warning ".UnderSpecified. may not respond to .\\+nonexistent_method." } */
16 }
17
18 /* { dg-warning "Messages without a matching method signature" "" { target *-*-* } 0 } */
19 /* { dg-warning "will be assumed to return .id. and accept" "" { target *-*-* } 0 } */
20 /* { dg-warning ".\.\.\.. as arguments" "" { target *-*-* } 0 } */