view clang/test/CodeGenObjC/forward-decl-param.m @ 236:c4bab56944e8 llvm-original

LLVM 16
author kono
date Wed, 09 Nov 2022 17:45:10 +0900
parents 1d019706d866
children
line wrap: on
line source

// 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