This removes links to rdar, which is an internal bug tracker that the community doesn't have visibility into. See further discussion at: https://discourse.llvm.org/t/code-review-reminder-about-links-in-code-commit-messages/71847
19 lines
272 B
Objective-C
19 lines
272 B
Objective-C
// RUN: %clang_cc1 %s -emit-llvm -o -
|
|
|
|
// crash due to forward-declared struct in protocol method parameter.
|
|
|
|
@protocol P
|
|
- (void) A:(struct z) z;
|
|
@end
|
|
@interface I < P >
|
|
@end
|
|
@implementation I
|
|
@end
|
|
|
|
@interface I2
|
|
- (void) A:(struct z2) z2;
|
|
@end
|
|
@implementation I2
|
|
@end
|
|
|