Merge branch 'master' of github.com:mono/mono
[mono.git] / mcs / errors / dcs1966-3.cs
1 // CS1966: `C': cannot implement a dynamic interface `I<dynamic[]>'
2 // Line: 8
3
4 interface I<T>
5 {
6 }
7
8 class C : I<dynamic[]>
9 {
10 }