cleol
[mcs.git] / errors / gcs0555.cs
blobb82722b3e419b954ce4263d4d04973862ab01cd2
1 // CS0555: User-defined operator cannot take an object of the enclosing type and convert to an object of the enclosing type
2 // Line: 6
4 struct S
6 public static implicit operator S (S? s)
8 return new S ();