[w32file] Remove dead code
[mono.git] / mcs / errors / cs1656-4.cs
1 // CS1656: Cannot assign to `i' because it is a `foreach iteration variable'
2 // Line: 14
3
4 using System.Collections;
5
6 class Test {
7         static IEnumerable foo () { return null; }
8
9         static void Main ()
10         {
11                 IEnumerable f = foo ();
12                 if (f != null)
13                         foreach (int i in f)
14                                 i = 0;
15         }
16 }