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

using System;
[assembly:CLSCompliant (true)]

public class CLSClass {
        public CLSClass (long a) {}
        public CLSClass (ref ulong a) {}
}