**** Merged from MCS ****
[mono-project.git] / mcs / errors / cs0111-3.cs
blob1f1d28e66528a1a679471eba55d1443bcea0558c
1 // cs0111.cs: Class 'Class' already defines a member called 'op_Implicit' with the same parameter types
2 // Line: 9
4 public class Class {
5 static public implicit operator Class(byte value) {
6 return new Class();
9 public static void op_Implicit (byte value) {}