DEBSOURCES
Skip Quicknav
sources / mono / 6.8.0.105%2Bdfsg-3.3 / mcs / errors / cs0106-6.cs
12345678910
// CS0106: The modifier `sealed' is not valid for this item // Line: 6 struct S { public sealed override int GetHashCode () { return 1; } }