b35e8ebe1fb383c5b41c2ff210561f3414de4eac
[mono.git] / mcs / errors / gcs0030-3.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 }