blob: f63bb03e5c97925cae4ac820bafaf3b1406235f7 [file] [log] [blame]
Daniel Dunbarca74ae72009-11-17 09:04:12 +00001// RUN: clang-cc -fobjc-nonfragile-abi -S -o - %s | grep -e "private_extern l_OBJC_PROTOCOL_" | count 2
Fariborz Jahanian960cd062009-04-10 18:47:34 +00002
3@interface FOO @end
4
5@interface NSObject @end
6
7@protocol SSHIPCProtocolHandler_BDC;
8
9typedef NSObject<SSHIPCProtocolHandler_BDC> _SSHIPCProtocolHandler_BDC;
10
11@interface SSHIPC_v2_RPFSProxy
12@property(nonatomic,readonly,retain) _SSHIPCProtocolHandler_BDC* protocolHandler_BDC;
13@end
14
15@implementation FOO
16- (_SSHIPCProtocolHandler_BDC*) protocolHandler_BDC {@protocol(SSHIPCProtocolHandler_BDC); }
17@end
18
19