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: 49ed0f927530d192406e71ea3c629d7b4d843779 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs3001.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);
}