[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / CodeGenObjC / property-category-impl.m
blob5a47a0cb60a9bcae901c2babe3ab9d7f4cb97466
1 // RUN: %clang_cc1 -triple x86_64-apple-darwin10  -emit-llvm -o - %s | FileCheck %s
3 // rdar : // 8093297
5 @interface Foo @end
7 @protocol Proto
8 @property (readonly) int proto_property;
9 @end
11 @interface Foo (Category) <Proto> @end
13 @implementation Foo (Category)
14 -(int)proto_property { return 0; }
15 @end
18 // CHECK: _OBJC_$_PROP_LIST_Foo_$_Category" = internal global
19 // CHECK: _OBJC_$_CATEGORY_Foo_$_Category" = internal global
20 // CHECK: _OBJC_$_PROP_LIST_Foo_$_Category