Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
083128f6b13dfa4fc615a838c49b516d901b1ac0
/
.
/
test
/
CodeGenObjC
/
objc2-weak-ivar.m
blob: 592c1f05474b4839289da3f59b26631cecec28a1 [
file
] [
log
] [
blame
]
// RUN: clang-cc -triple x86_64-apple-darwin9 -fobjc-gc -emit-llvm -o %t %s
@class
NSObject
;
@interface
Foo
{
@public
__weak
NSObject
*
nsobject
;
}
@end
@implementation
Foo
@end