minix/external/bsd/llvm/dist/clang/test/Rewriter/rewrite-modern-protocol-1.mm
Lionel Sambuc f4a2713ac8 Importing netbsd clang -- pristine
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
2014-07-28 17:05:57 +02:00

14 lines
402 B
Text

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