OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [obj-c++.dg/] [property/] [at-property-28.mm] - Blame information for rev 703

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 703 jeremybenn
/* Contributed by Nicola Pero , December 2010.  */
2
/* { dg-do compile } */
3
 
4
/* Test errors when extending a property in a class extension.  */
5
 
6
#include 
7
#include 
8
 
9
@interface MyRootClass
10
{
11
  Class isa;
12
}
13
@property (readonly, retain)    id property1; /* { dg-message "originally specified here" } */
14
@property (readonly)           int property2; /* { dg-message "originally specified here" } */
15
@property (readonly, getter=y) int property3; /* { dg-message "originally specified here" } */
16
@property (readonly)           int property4; /* Ok */
17
@property (readonly)           int property5; /* { dg-message "originally specified here" } */
18
@end
19
 
20
@interface MyRootClass ()
21
@property (readwrite, copy)       id property1; /* { dg-warning "assign semantics attributes of property .property1. conflict with previous declaration" } */
22
@property (readwrite, nonatomic) int property2; /* { dg-warning ".nonatomic. attribute of property .property2. conflicts with previous declaration" } */
23
@property (readwrite, getter=x)  int property3; /* { dg-warning ".getter. attribute of property .property3. conflicts with previous declaration" } */
24
@property (readwrite)            int property4; /* Ok */
25
@property (readwrite)          float property5; /* { dg-warning "type of property .property5. conflicts with previous declaration" } */
26
@end
27
 
28
 
29
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.