aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/obj-c++.dg/property/cxx-property-1.mm
blob: 3c6f93e2a42119f0c97763bd9f20fd97e10b4256 (plain)
1
2
3
4
5
6
7
8
9
10
/* Testcase from PR obj-c++/48275.  */
/* { dg-do compile } */

@interface Test
{
        int ns;
}
@property (getter=namespace) int ns;

@end