2010-05-27 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1623.cs
blob5f188543c99d7700d9f6c5a86bca512fc46ac06a
1 // CS1623: Iterators cannot have ref or out parameters
2 // Line: 8
3 using System;
4 using System.Collections;
6 class X
8 public static IEnumerable Test (ref int a)
10 yield return 0;
13 static void Main ()
15 int i = 3;
16 IEnumerable a = Test (ref i);
17 Console.WriteLine (a);