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

cs3014-6.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7f8b003dc1729e8d46865c382a2686392f58fafc (plain)
1
2
3
4
5
6
7
8
9
10
// cs3014.cs: 'C.field' 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)]
        public long field;
}