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

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

using System;
[assembly:CLSCompliant (true)]

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