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-16.mm] - Blame information for rev 703

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 703 jeremybenn
/* Contributed by Nicola Pero , November 2010.  */
2
/* { dg-do compile } */
3
 
4
#include 
5
 
6
/* Test that if you have a property declared in a class and a
7
   sub-class, the attributes match.  */
8
 
9
@interface MyRootClass
10
{
11
  Class isa;
12
}
13
@property (assign) id a;                  /* { dg-message "originally specified here" } */
14
@property (retain) id b;                  /* { dg-message "originally specified here" } */
15
@property int c;                          /* { dg-message "originally specified here" } */
16
@property (nonatomic) int d;              /* { dg-message "originally specified here" } */
17
@property int e;                          /* { dg-message "originally specified here" } */
18
@property int f;                          /* { dg-message "originally specified here" } */
19
@property int g;                          /* { dg-message "originally specified here" } */
20
@property (readonly) int h;               /* Ok */
21
@property (readonly,getter=getMe) int i;  /* { dg-message "originally specified here" } */
22
@end
23
 
24
@interface MyClass : MyRootClass
25
@property (assign) id a;
26
@property (retain) id b;
27
@property int c;
28
@property (nonatomic) int d;
29
@property int e;
30
@property int f;
31
@property int g;
32
@property (readonly) int h;
33
@property (readonly,getter=getMe) int i;
34
@end
35
 
36
@interface MyClass2 : MyRootClass
37
@property (retain) id a;         /* { dg-warning "assign semantics attributes of property .a. conflict with previous declaration" } */
38
@property (assign) id b;         /* { dg-warning "assign semantics attributes of property .b. conflict with previous declaration" } */
39
@property (nonatomic) int c;     /* { dg-warning ".nonatomic. attribute of property .c. conflicts with previous declaration" } */
40
@property int d;                 /* { dg-warning ".nonatomic. attribute of property .d. conflicts with previous declaration" } */
41
@property (setter=setX:) int e;  /* { dg-warning ".setter. attribute of property .e. conflicts with previous declaration" } */
42
@property (getter=x) int f;      /* { dg-warning ".getter. attribute of property .f. conflicts with previous declaration" } */
43
@property (readonly) int g;      /* { dg-warning ".readonly. attribute of property .g. conflicts with previous declaration" } */
44
@property (readwrite) int h;     /* Ok */
45
@property (readonly) int i;      /* { dg-warning ".getter. attribute of property .i. conflicts with previous declaration" } */
46
@end

powered by: WebSVN 2.1.0

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