* HttpWebRequest.cs: When retrying a POST request after an authentication
[mono.git] / mcs / errors / cs3005-12.cs
1 // cs3005.cs: Identifier 'CLSClass.NameAbC(int)' differing only in case is not CLS-compliant
2 // Line: 9
3
4 using System;
5 [assembly:CLSCompliant (true)]
6
7 public class CLSClass {
8         public int NameABC;
9         public static void NameAbC(int arg) {}
10 }