Daily bump.
[official-gcc.git] / gcc / testsuite / obj-c++.dg / selector-4.mm
blobb6ddcbe43ebec8508a92fd3c09ed888aef592c6b
1 /* Test warning for non existing selectors.  */
2 /* Contributed by Devang Patel <dpatel@apple.com>.  */
4 /* { dg-options "-Wselector -fnext-runtime" } */
5 /* { dg-do compile } */
6 // { dg-additional-options "-Wno-objc-root-class" }
8 typedef struct objc_object { struct objc_class *class_pointer; } *id;
9 typedef struct objc_selector *SEL;
11 @interface Foo
12 - (void) foo;
13 - (void) bar;
14 @end
16 @implementation Foo
17 - (void) bar
21 - (void) foo
23   SEL a,b,c;
24   a = @selector(b1ar); /* { dg-warning "creating selector for nonexistent method .b1ar." } */
25   b = @selector(bar);
27 @end