New tests, message update
[mono.git] / mcs / errors / cs0082-9.cs
1 // CS0082: A member `Class.op_Implicit(byte)' is already reserved
2 // Line: 9
3
4 public class Class {
5         static public implicit operator Class(byte value) {
6                return new Class();
7         }
8     
9         public static void op_Implicit (byte value) {}
10 }