summaryrefslogtreecommitdiff
path: root/clang/test/Rewriter/rewrite-modern-protocol-1.mm
blob: 7b737fe61d66f90678c8bb56066d42945ddd24b7 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// RUN: %clang_cc1 -E %s -o %t.mm
// RUN: %clang_cc1 -x objective-c++ -fblocks -fms-extensions -rewrite-objc %t.mm -o - | FileCheck %s
// rdar://11248048

@protocol NSCopying @end

@interface INTF<NSCopying>
@end

@implementation INTF @end

// CHECK: static struct _protocol_t _OBJC_PROTOCOL_NSCopying
// CHECK: static struct _protocol_t *_OBJC_LABEL_PROTOCOL_$_NSCopying = &_OBJC_PROTOCOL_NSCopying;