mirror of
https://github.com/apple/swift.git
synced 2026-06-20 15:42:51 +02:00
ff7c6f6702
...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
|