2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0030-3.cs
blobb35e8ebe1fb383c5b41c2ff210561f3414de4eac
1 // CS0030: Cannot convert type `T[,]' to `System.Collections.Generic.IEnumerable<T>'
2 // Line: 10
4 using System.Collections.Generic;
6 class C
8 IEnumerable<T> Foo<T> (T [,] a)
10 return (IEnumerable<T>) a;