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

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

using System;

public interface I {
        [CLSCompliant (true)]
        void Valid (bool arg);
}