[System.Data] Try to fix random DataViewTest.DefaultColumnNameAddListChangedTest...
[mono-project.git] / mcs / errors / cs3005-1.cs
blobfcb8798153e70dd1b89f7871d71c241181fbe5b2
1 // CS3005: Identifier `CLSClass.Method(int)' differing only in case is not CLS-compliant
2 // Line: 8
3 // Compiler options: -warnaserror
5 [assembly:System.CLSCompliant (true)]
7 public class BaseClass {
8 public int method;
11 public class CLSClass : BaseClass {
12 public static void Method(int arg) {}