fix run-test
[mcs.git] / errors / cs1654.cs
blobb9b316ea09a8d554844a2ebff3a70b596f34da24
1 // cs1654.cs: Cannot assign to members of `p' because it is a `foreach iteration variable'
2 // Line: 18
4 using System.Collections;
6 struct P {
7 public int x;
10 class Test {
11 static IEnumerable foo () { return null; }
13 static void Main ()
15 IEnumerable f = foo ();
16 if (f != null)
17 foreach (P p in f)
18 p.x = 0;