forked from OSchip/llvm-project
14 lines
206 B
Mathematica
14 lines
206 B
Mathematica
|
// RUN: clang-cc -fvisibility=hidden -triple x86_64-apple-darwin10 -S -o - %s | grep -e "private_extern _OBJC_IVAR_"
|
||
|
@interface I
|
||
|
{
|
||
|
int P;
|
||
|
}
|
||
|
|
||
|
@property int P;
|
||
|
@end
|
||
|
|
||
|
@implementation I
|
||
|
@synthesize P;
|
||
|
@end
|
||
|
|