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
Merge pull request #4202 from marek-safar/compression
[mono-project.git]
/
mcs
/
errors
/
cs0136.cs
blob
ea82bdc81414a54bfb160e9840e99a8f5405b6f0
1
// CS0136: A local variable named `i' cannot be declared in this scope because it would give a different meaning to `i', which is already used in a `parent or current' scope to denote something else
2
// Line: 9
3
4
class
X
{
5
void
b
()
6
{
7
int
i
;
8
{
9
string
i
;
10
}
11
}
12
}
13
14