Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs3005-12.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c3cb31748e82d21578a392c26512a32fe4838b0b (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs3005-12.cs: Identifier `CLSClass.NameAbC(int)' differing only in case is not CLS-compliant
// Line: 9
// Compiler options: -warnaserror

using System;
[assembly:CLSCompliant (true)]

public class CLSClass {
        public int NameABC;
        public static void NameAbC(int arg) {}
}