1 // CS1655: Cannot pass members of `q' as ref or out arguments because it is a `foreach iteration variable'
4 using System
.Collections
;
15 static void bar (out int x
) { x = 0; }
16 static IEnumerable
foo () { return null; }
20 IEnumerable f
= foo ();