[mcs] Reset also all partial parts current-type
[mono-project.git] / mcs / errors / cs0102-13.cs
blobe0bdbcdc07947f9fa0c888f0be5c7fb95206df53
1 // CS0102: The type `SampleClass' already contains a definition for `op_Implicit'
2 // Line: 10
4 public class SampleClass {
6 static public implicit operator SampleClass (byte value) {
7 return new SampleClass();
10 public bool op_Implicit;