repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs1007.cs
blob
e1b3a417d7b922d1712a4fdff3afacb590a4eca7
1
// CS01007: 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
}