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

cs3010.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ae9b9fef306e41a3e5f85b42a3083e2a23253a28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs3010.cs: 'I.Error': CLS-compliant interfaces must have CLS-compliant members
// Line: 12

using System;
[assembly:CLSCompliant (true)]

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