opnsense-src/test/CodeGenObjC/protocol-in-extended-class.m

29 lines
666 B
Mathematica
Raw Normal View History

2010-01-01 05:34:51 -05:00
// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fobjc-nonfragile-abi -S %s -o %t-64.s
2009-11-18 09:59:57 -05:00
// RUN: FileCheck -check-prefix LP64 --input-file=%t-64.s %s
2010-01-01 05:34:51 -05:00
// RUN: %clang_cc1 -triple i386-apple-darwin -S %s -o %t-32.s
2009-11-18 09:59:57 -05:00
// RUN: FileCheck -check-prefix LP32 --input-file=%t-32.s %s
2009-10-14 14:03:49 -04:00
@protocol MyProtocol
@end
@protocol ExtendedProtocol
@end
@interface ItDoesntWork<MyProtocol> {
}
-(void) Meth;
@end
@interface ItDoesntWork() <MyProtocol, ExtendedProtocol>
@end
@implementation ItDoesntWork
-(void) Meth {
ItDoesntWork <MyProtocol, ExtendedProtocol> *p = 0;
}
@end
// CHECK-LP64: l_OBJC_PROTOCOL_$_ExtendedProtocol:
// CHECK-LP32: L_OBJC_PROTOCOL_ExtendedProtocol: