[xbuild] Fix bug #676671. Raise AnyEvent .
[mono.git] / mcs / errors / cs0135-2.cs
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 }