summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0555-2.cs
blob: b82722b3e419b954ce4263d4d04973862ab01cd2 (plain)
1
2
3
4
5
6
7
8
9
10
// CS0555: User-defined operator cannot take an object of the enclosing type and convert to an object of the enclosing type
// Line: 6

struct S
{
	public static implicit operator S (S? s)
	{
		return new S ();
	}
}