aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenObjC/hidden-synthesized-ivar.m
blob: 50a87cb2f4539115e0fb3ed5569f8bf6704a7a9a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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