aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/obj-c++.dg/property/at-property-15.mm
blob: ef53442460f2ad26954c67c829cc43b2d3929f94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* Contributed by Nicola Pero <nicola.pero@meta-innovation.com>, November 2010.  */
/* { dg-do compile } */
/* { dg-options "-Wno-property-assign-default" } */

#include <objc/objc.h>

/* Test that -Wno-property-assign-default turns off all "object
   property xxx has no assign, return or copy attribute" warnings.  */

@interface MyRootClass
{
  Class isa;
}

@property id property_a;            /* Would normally generate a warning.  */
@property (readonly) id property_b;
@property id *property_c;          
@property Class property_d;        
@property MyRootClass *property_e; /* Would normally generate a warning.  */
@end