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