Align libmonoruntime vcxproj with makefile.
[mono.git] / mcs / errors / cs0102-13.cs
1 // CS0102: The type `SampleClass' already contains a definition for `op_Implicit'
2 // Line: 10
3
4 public class SampleClass {
5     
6         static public implicit operator SampleClass (byte value) {
7                return new SampleClass();
8         }
9         
10         public bool op_Implicit;
11 }