xref: /llvm-project/clang/test/CodeGenObjC/forward-decl-param.m (revision 0f1c1be1968076d6f96f8a7bcc4a15cf195ecd97)
1// RUN: %clang_cc1 %s -emit-llvm -o -
2
3// crash due to forward-declared struct in protocol method parameter.
4
5@protocol P
6- (void) A:(struct z) z;
7@end
8@interface I < P >
9@end
10@implementation I
11@end
12
13@interface I2
14- (void) A:(struct z2) z2;
15@end
16@implementation I2
17@end
18
19