2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs3005-1.cs
blob7280e3f276054831ad9253c469d92783bb3381c2
1 // cs3005-1.cs: 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) {}