Reviewed By: jvillard Differential Revision: D15317686 fbshipit-source-id: a13520499master
parent
12687b2948
commit
10ca0c3269
@ -0,0 +1,26 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-present, Facebook, Inc.
|
||||||
|
*
|
||||||
|
* This source code is licensed under the MIT license found in the
|
||||||
|
* LICENSE file in the root directory of this source tree.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#import <Foundation/NSObject.h>
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_BEGIN
|
||||||
|
|
||||||
|
@interface Blah : NSObject
|
||||||
|
|
||||||
|
+ (instancetype)someMethod;
|
||||||
|
|
||||||
|
@end
|
||||||
|
|
||||||
|
@implementation Blah
|
||||||
|
|
||||||
|
+ (instancetype)someMethod {
|
||||||
|
return nil;
|
||||||
|
}
|
||||||
|
|
||||||
|
@end
|
||||||
|
|
||||||
|
NS_ASSUME_NONNULL_END
|
Loading…
Reference in new issue