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
/
cs0844-5.cs
blob
dc7efa770f442cd5706f949876c16aeb8b4ede7b
1
// CS0844: A local variable `s' cannot be used before it is declared. Consider renaming the local variable when it hides the member `C.s'
2
// Line: 10
3
4
class
C
5
{
6
string
s
{
7
set
{}
8
}
9
10
public void
Test
()
11
{
12
s
=
"x"
;
13
string
s
=
"a"
;
14
}
15
}