repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git]
/
gcc
/
testsuite
/
obj-c++.dg
/
property
/
property-neg-4.mm
blob
cc25d84af9bce4043d446efeb7d283e722e60c4e
1
/* { dg-do compile } */
2
3
@interface Person
4
{
5
char *fullName;
6
}
7
@property char *fullName;
8
+ (void) testClass;
9
@end
10
11
12
@implementation Person
13
@synthesize fullName;
14
+ (void) testClass {
15
self.fullName = "MyName"; /* { dg-error "request for member .fullName." } */
16
}
17
@end