Merge pull request #5693 from lateralusX/lateralusX/disable-stack-overflow-win-x64
[mono.git] / mcs / errors / cs0029-27.cs
1 // CS0029: Cannot implicitly convert type `T[]' to `System.Collections.Generic.IList<U>'
2 // Line: 10
3
4 using System.Collections.Generic;
5
6 class Program
7 {
8         static IList<U> Foo<T, U> (T[] arg) where T : U
9         {
10                 return arg;
11         }
12 }