summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0106-6.cs
blob: 06fe0b07ba74166828563af2458449108a35388c (plain)
1
2
3
4
5
6
7
8
9
10
// CS0106: The modifier `sealed' is not valid for this item
// Line: 6

struct S
{
	public sealed override int GetHashCode ()
	{
		return 1;
	}
}