[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0030-13.cs
1 // CS0030: Cannot convert type `T[,]' to `System.Collections.Generic.IEnumerable<T>'
2 // Line: 10
3
4 using System.Collections.Generic;
5
6 class C
7 {
8         IEnumerable<T> Foo<T> (T [,] a)
9         {
10                 return (IEnumerable<T>) a;
11         }
12 }