2010-05-27 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1656-4.cs
blob491fd7f3f1e1843627533d2d1b36cd010b34987f
1 // cs1656-4.cs: Cannot assign to `i' because it is a `foreach iteration variable'
2 // Line: 14
4 using System.Collections;
6 class Test {
7 static IEnumerable foo () { return null; }
9 static void Main ()
11 IEnumerable f = foo ();
12 if (f != null)
13 foreach (int i in f)
14 i = 0;