(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs3005-1.cs
blobc8e9752d61f90745cf70a49e6b3450024d7029c6
1 // cs3005.cs: Identifier 'CLSClass.Method(int)' differing only in case is not CLS-compliant
2 // Line: 8
4 [assembly:System.CLSCompliant (true)]
6 public class BaseClass {
7 public int method;
10 public class CLSClass : BaseClass {
11 public static void Method(int arg) {}