DEBSOURCES
Skip Quicknav
sources / mono / 6.8.0.105%2Bdfsg-3.3 / mcs / errors / cs1968.cs
12345678910
// CS1966: A constraint cannot be the dynamic type `I<dynamic>' // Line: 8 interface I<T> { } class C<T> where T : I<dynamic> { }