summaryrefslogtreecommitdiff
path: root/mcs/errors/cs3005-26.cs
blob: 2abd8cbcab7c85d4c63b5ecc54818df88c5c95b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS3005: Identifier `CLSClass.Method<T>(int)' differing only in case is not CLS-compliant
// Line: 12
// Compiler options: -warnaserror

[assembly:System.CLSCompliant (true)]

public class BaseClass {
        public int method;
}

public class CLSClass : BaseClass {
        public static void Method<T>(int arg) {}
}