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

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

using System;
[assembly:CLSCompliant (false)]

public class C {
        [CLSCompliant (true)]
        protected void Error (bool arg) {}

}