repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-03-10 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0136.cs
blob
9664a32974659fe649468e4a76eb9cdb76d9d28d
1
// cs0136.cs: 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' scope to denote something else
2
// Line: 8
3
class
X
{
4
void
b
()
5
{
6
int
i
;
7
{
8
string
i
;
9
}
10
}
11
}
12
13