w32file-unix.c: In function 'mono_w32file_get_file_size':
[mono-project.git] / mcs / errors / cs0030-13.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;