]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/SemaObjC/synthesized-ivar.m
Update clang to r89205.
[FreeBSD/FreeBSD.git] / test / SemaObjC / synthesized-ivar.m
1 // RUN: clang-cc -fsyntax-only -fobjc-nonfragile-abi -verify %s
2 @interface I
3 {
4 }
5 @property int IP;
6 @end
7
8 @implementation I
9 @synthesize IP;
10 - (int) Meth {
11    return IP;
12 }
13 @end