[mcs] Fixes codegen for pattern probing with value-type variables
[mono.git] / mcs / errors / cs0106-6.cs
1 // CS0106: The modifier `sealed' is not valid for this item
2 // Line: 6
3
4 struct S
5 {
6         public sealed override int GetHashCode ()
7         {
8                 return 1;
9         }
10 }