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
2010-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs0135-2.cs
blob
b25e46425ca60ecaa0d5832d9edbe7629df07810
1
// cs0135.cs: `i' conflicts with a declaration in a child block
2
// Line: 10
3
4
delegate int
F
(
int
i
);
5
class
Foo
{
6
static int
i
;
7
static void
Main
()
8
{
9
F f
=
delegate
(
int
i
)
{ return i; }
;
10
i
=
0
;
11
}
12
}