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

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

using System;
[assembly:CLSCompliant(true)]

public interface I {
        long this[ulong indexA] { set; }
}