// CS0029: Cannot implicitly convert type `T[]' to `System.Collections.Generic.IList' // Line: 10 using System.Collections.Generic; class Program { static IList Foo (T[] arg) where T : U { return arg; } }