[runtime] Avoid indirection when building MonoContext on darwin
[mono.git] / mcs / errors / cs0029-17.cs
1 // CS0029: Cannot implicitly convert type `T[]' to `I[]'
2 // Line: 12
3
4 interface I
5 {
6 }
7
8 class C
9 {
10         static void Foo<T> (T [] t) where T : I
11         {
12                 I [] i = t;
13         }
14 }