Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs1968.cs
1 // CS1966: A constraint cannot be the dynamic type `I<dynamic>'
2 // Line: 8
3
4 interface I<T>
5 {
6 }
7
8 class C<T> where T : I<dynamic>
9 {
10 }