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
/
cs0082.cs
blob
1908dbd1c00772fcbf36c1a8f4fff399d5559c3b
1
// CS0082: A member `Test.get_Value()' is already reserved
2
// Line: 7
3
4
public class
Test
5
{
6
public string
get_Value
()
{ return null; }
7
public string
Value
{
8
get
{ }
9
}
10
}