view gcc/testsuite/obj-c++.dg/property/at-property-15.mm @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* 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