aboutsummaryrefslogtreecommitdiff
path: root/clang/test/CodeGenObjC/forward-decl-param.m
blob: 5a5e83f5f085efe64cbd0023cb32a82f0fa37f4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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