// cs3005-17.cs: Identifier `CLSClass.op_implicit()' differing only in case is not CLS-compliant // Compiler options: -warnaserror // Line: 12 using System; [assembly:CLSCompliant(true)] public class CLSClass { static public implicit operator CLSClass(byte value) { return new CLSClass(); } public void op_implicit () {} }