2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git] / mcs / errors / cs0111-3.cs
blob0cfa9234528e39c5a5467ca51d96001e88703749
1 // cs0111-3.cs: `Class.implicit operator Class(byte)' is already defined. Rename this member or use different 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) {}