TaskAwaiter from CoreFX
[mono-project.git] / mcs / errors / cs0029-17.cs
bloba36e493685bc8681def1540085fc64e46d76f2ed
1 // CS0029: Cannot implicitly convert type `T[]' to `I[]'
2 // Line: 12
4 interface I
8 class C
10 static void Foo<T> (T [] t) where T : I
12 I [] i = t;