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

cs3001-9.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e116fcb37dc760d8d91c91ecf1435c5f18f60fea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs3001-9.cs: Argument type `ulong' is not CLS-compliant
// Line: 13

using System;
[assembly:CLSCompliant (A.f)]

public class A
{
    public const bool f = true;
}

public interface I {
        void Test (ulong arg);
}