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
2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs0136-5.cs
blob
b9bd42dba665861b6efb7e2f06de630da370a8c8
1
// cs0136-5.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 `child' scope to denote something else
2
// Line: 9
3
class
X
{
4
void
b
()
5
{
6
{
7
string
i
;
8
}
9
int
i
;
10
}
11
}
12
13