Reviewed By: jberdine Differential Revision: D5236287 fbshipit-source-id: ef801eemaster
parent
03703e316c
commit
99a0f894b6
@ -0,0 +1,27 @@
|
||||
/*
|
||||
* Copyright (c) 2017 - present Facebook, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This source code is licensed under the BSD style license found in the
|
||||
* LICENSE file in the root directory of this source tree. An additional grant
|
||||
* of patent rights can be found in the PATENTS file in the same directory.
|
||||
*/
|
||||
#import <UIKit/UIKit.h>
|
||||
|
||||
@interface Filter_out_unavailable_api : NSObject
|
||||
|
||||
- (void)n NS_AVAILABLE(10_12, 10_0);
|
||||
|
||||
@end
|
||||
|
||||
@implementation Filter_out_unavailable_api
|
||||
|
||||
- (void)n {
|
||||
}
|
||||
|
||||
// no bug
|
||||
- (void)with_responds_to_selector:(Filter_out_unavailable_api*)a {
|
||||
[a n];
|
||||
}
|
||||
|
||||
@end
|
Loading…
Reference in new issue