f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
16 lines
456 B
Text
16 lines
456 B
Text
// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-runtime=macosx-fragile-10.5 -emit-llvm -o - %s
|
|
// PR7390
|
|
|
|
@interface NSObject {}
|
|
- (void)respondsToSelector:(const SEL&)s : (SEL*)s1;
|
|
- (void) setPriority:(int)p;
|
|
- (void)Meth;
|
|
@end
|
|
|
|
@implementation NSObject
|
|
- (void)Meth {
|
|
[self respondsToSelector:@selector(setPriority:) : &@selector(setPriority:)];
|
|
}
|
|
- (void) setPriority:(int)p{}
|
|
- (void)respondsToSelector:(const SEL&)s : (SEL*)s1 {}
|
|
@end
|