Files
swift-mirror/test/SILGen/Inputs/usr/include/NonNilTest.h
Jonas Devlieghere b4d268e9e1 Migrate llvm::make_unique to std::make_unique
Now that we've moved to C++14, we no longer need the llvm::make_unique
implementation from STLExtras.h. This patch is a mechanical replacement
of (hopefully) all the llvm::make_unique instances in the swift repo.
2019-08-15 11:32:39 -07:00

9 lines
233 B
Objective-C

@import ObjectiveC;
@interface NonNilTest: NSObject
- (NonNilTest *)nonNilObject;
+ (NonNilTest *)nonNilObject;
@property NonNilTest *nonNilObjectProperty;
@property (unsafe_unretained) NonNilTest *unownedNonNilObjectProperty;
@end