blob: 97ff03d78aaca3b4dabc3e549849d794476c02ec [file] [log] [blame]
/* APPLE LOCAL file mainline */
/* Test that we don't ICE when issuing a -Wselector warning. */
/* { dg-options "-Wselector" } */
/* { dg-do compile } */
#include <objc/Object.h>
@interface Foo
@end
@implementation Foo
-(void) foo
{
SEL a;
a = @selector(b1ar);
}
@end
/* { dg-warning "creating selector for nonexistent method .b1ar." "" { target *-*-* } 0 } */