Files
swift-mirror/test/ClangImporter/Inputs/serialization-sil.h
Jordan Rose 61798ff6ec [test] Rename test/ClangModules to test/ClangImporter. (#5618)
...to match the component in include/ and lib/. No content change.
2016-11-02 18:00:53 -07:00

8 lines
263 B
Objective-C

@protocol Test
@optional
- (nonnull id)normalObject;
- (nonnull void *)innerPointer __attribute__((objc_returns_inner_pointer));
@property (nonnull) id normalObjectProp;
@property (nonnull) void *innerPointerProp __attribute__((objc_returns_inner_pointer));
@end