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-2.cs
blob
c8272ccb10fe93bc9709270aad65b3ad49d567ea
1
// CS0844: A local variable `y' cannot be used before it is declared. Consider renaming the local variable when it hides the member `X.y'
2
// Line: 8
3
4
class
X
5
{
6
static int
y
;
7
static void
Main
() {
8
y
=
10
;
9
int
y
=
5
;
10
}
11
}