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: 45a9f2bfd54747e9fc0657175b68089a343a8b06 (plain)
1
2
3
4
5
6
7
8
// cs3014-3.cs: `I' cannot be marked as CLS-compliant because the assembly is not marked as CLS-compliant
// Line: 7

using System;

[CLSCompliant (true)]
public interface I {
}