* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / errors / cs3005-17.cs
1 // cs3005-17.cs: Identifier `CLSClass.op_implicit()' differing only in case is not CLS-compliant
2 // Line: 12
3 // Compiler options: -warnaserror
4
5 using System;
6 [assembly:CLSCompliant(true)]
7
8 public class CLSClass {
9         static public implicit operator CLSClass(byte value) {
10                return new CLSClass();
11         }
12     
13         public void op_implicit () {}
14 }