Reviewed By: jvillard Differential Revision: D10162271 fbshipit-source-id: 47f9420b8master
parent
f639906496
commit
89700a7d95
@ -0,0 +1,35 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2018-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/Foundation.h>
|
||||||
|
|
||||||
|
@interface A : NSObject
|
||||||
|
|
||||||
|
@end
|
||||||
|
|
||||||
|
@implementation A
|
||||||
|
|
||||||
|
+ (instancetype)test {
|
||||||
|
static id sharedInstance;
|
||||||
|
^{
|
||||||
|
sharedInstance = [[self alloc] init];
|
||||||
|
}();
|
||||||
|
|
||||||
|
return sharedInstance;
|
||||||
|
}
|
||||||
|
|
||||||
|
+ (int)testOK {
|
||||||
|
static int i;
|
||||||
|
|
||||||
|
^{
|
||||||
|
int j = 0;
|
||||||
|
}();
|
||||||
|
|
||||||
|
return i;
|
||||||
|
}
|
||||||
|
|
||||||
|
@end
|
Loading…
Reference in new issue