19 lines · plain
1// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -o - %s | FileCheck %s2 3@interface Foo @end4 5@protocol Proto6@property (readonly) int proto_property;7@end8 9@interface Foo (Category) <Proto> @end10 11@implementation Foo (Category)12-(int)proto_property { return 0; }13@end14 15 16// CHECK: _OBJC_$_PROP_LIST_Foo_$_Category" = internal global17// CHECK: _OBJC_$_CATEGORY_Foo_$_Category" = internal global18// CHECK: _OBJC_$_PROP_LIST_Foo_$_Category19