[mcs] Allows shadowing of probing pattern variables
[mono.git] / mcs / errors / cs3005-12.cs
1 // CS3005: Identifier `CLSClass.NameAbC(int)' differing only in case is not CLS-compliant
2 // Line: 9
3 // Compiler options: -warnaserror
4
5 using System;
6 [assembly:CLSCompliant (true)]
7
8 public class CLSClass {
9         public int NameABC;
10         public static void NameAbC(int arg) {}
11 }