Files
swift-mirror/validation-test/Serialization/Inputs/custom-modules/rdar40899824Helper.h
Jordan Rose f1b347c0cc Handle non-deserializable SIL functions referenced in witness tables
This is enough to let the test case in rdar://problem/40899824 pass,
and any callers of this function already need to be able to handle a
nullptr result. There's a lot more work to do in this area, but it's
nice to get the simple things working again.
2018-06-27 17:24:22 -07:00

14 lines
165 B
Objective-C

#ifndef BAD
typedef struct {
int value;
} SoonToBeMissing;
#endif
@interface Impl
#ifndef BAD
- (void)use:(SoonToBeMissing)value;
#endif
- (void)unrelated;
@end