minix/external/bsd/llvm/dist/clang/test/CodeGenObjC/forward-decl-param.m
Lionel Sambuc f4a2713ac8 Importing netbsd clang -- pristine
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
2014-07-28 17:05:57 +02:00

19 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