DEBSOURCES
Skip Quicknav
sources / mono / 6.8.0.105%2Bdfsg-3.3 / mcs / errors / cs1959-2.cs
12345678910
// CS1959: Type parameter `T' cannot be declared const // Line: 8 struct S { public void Foo<T> () where T : struct { const T t = null; } }