Forgot this file
[mono.git] / mcs / errors / cs8207.cs
1 // cs8207.cs: out or ref are not allowed in an iterator method
2 //
3 using System;
4 using System.Collections;
5
6 class X {
7
8         IEnumerator GetValue (int b, out int a)
9         {
10                 yield 1;
11         }
12         
13         static void Main ()
14         {
15         }
16 }