Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
b33f3ad379f497c5fc6d0ada618745dd46d0e717
/
.
/
test
/
SemaObjC
/
synthesized-ivar.m
blob: de44857934fc16a1707112af4e99eb637cde708a [
file
] [
log
] [
blame
]
// RUN: clang-cc -fsyntax-only -triple x86_64-apple-darwin9 -verify %s
@interface
I
{
}
@property
int
IP
;
@end
@implementation
I
@synthesize
IP
;
-
(
int
)
Meth
{
return
IP
;
}
@end