repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-05-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
cs1007.cs
blob
af0d55bd7a93275e9d795c51bbdbd5aba3778e4b
1
// cs01007.cs: Property accessor already defined
2
// Line: 10
3
4
public class
C
5
{
6
public int
Prop
{
7
get
{
8
return
0
;
9
}
10
get
{
11
return
0
;
12
}
13
}
14
}