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

cs3014-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d3db0337ab948280f9f4ed9a1a891ba8fbe54d92 (plain)
1
2
3
4
5
6
7
8
// cs3014-1.cs: 'I' cannot be marked as CLS compliant because the assembly is not marked as compliant
// Line: 7

using System;

[CLSCompliant (true)]
public interface I {
}