DEBSOURCES
Skip Quicknav
sources / mono / 6.8.0.105%2Bdfsg-3.3 / mcs / errors / cs0283.cs
1234567891011
// CS0283: The type `S' cannot be declared const // Line: 10 struct S { } class C { const S s = new S(); }