[System.Data] Try to fix random DataViewTest.DefaultColumnNameAddListChangedTest...
[mono-project.git] / mcs / errors / cs3005-17.cs
blob409dc421fecdda6201ffe7567197de9a6d6dc0ae
1 // CS3005: Identifier `CLSClass.op_implicit()' differing only in case is not CLS-compliant
2 // Line: 12
3 // Compiler options: -warnaserror
5 using System;
6 [assembly:CLSCompliant(true)]
8 public class CLSClass {
9 static public implicit operator CLSClass(byte value) {
10 return new CLSClass();
13 public void op_implicit () {}