mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
...instead of crashing. Also drop the class if its generic requirements depend on a type that can't be loaded (instead of crashing). rdar://problem/50125674
10 lines
112 B
Objective-C
10 lines
112 B
Objective-C
@interface Root
|
|
- (instancetype)init;
|
|
@end
|
|
|
|
#if !BAD
|
|
@interface DisappearingSuperclass : Root
|
|
@end
|
|
#else
|
|
#endif
|