1 2 3 4 5 6 7 8 9 10
// CS1966: `C': cannot implement a dynamic interface `I<dynamic[]>' // Line: 8 interface I<T> { } class C : I<dynamic[]> { }