2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs3005.cs
blob2abd8cbcab7c85d4c63b5ecc54818df88c5c95b2
1 // CS3005: Identifier `CLSClass.Method<T>(int)' differing only in case is not CLS-compliant
2 // Line: 12
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<T>(int arg) {}