[System.Data] Try to fix random DataViewTest.DefaultColumnNameAddListChangedTest...
[mono-project.git] / mcs / errors / cs0029-27.cs
blob90bc419bf4d98e8bd34d0b874c45f73c3fe82ff1
1 // CS0029: Cannot implicitly convert type `T[]' to `System.Collections.Generic.IList<U>'
2 // Line: 10
4 using System.Collections.Generic;
6 class Program
8 static IList<U> Foo<T, U> (T[] arg) where T : U
10 return arg;