summaryrefslogtreecommitdiff
path: root/mcs/errors/cs3001-9.cs
blob: c0a81972486faaba05e286fa5436e602d99ec902 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// CS3001: Argument type `ulong' is not CLS-compliant
// Line: 14
// Compiler options: -warnaserror -warn:1

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

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

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