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

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

using System;
[assembly:CLSCompliant (true)]

public interface CLSInterface {
}

public class clsInterface: CLSInterface {
}