DEBSOURCES
Skip Quicknav
sources / mono / 4.6.2.7%2Bdfsg-1 / 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; } }