This reverts commit d618f1c3b1.
This commit wasn't reviewed ahead of time and significant concerns were
raised immediately after it landed. According to our developer policy
this warrants immediate revert of the commit.
https://llvm.org/docs/DeveloperPolicy.html#patch-reversion-policy
Differential Revision: https://reviews.llvm.org/D155509
20 lines
300 B
Objective-C
20 lines
300 B
Objective-C
// RUN: %clang_cc1 %s -emit-llvm -o -
|
|
|
|
// <rdar://problem/9123036> 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
|
|
|