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: 8f5abf9c90161f3e60719a122865a91133ff9948 (plain)
1
2
3
4
5
6
7
8
9
// cs3001-7.cs: Argument type `ulong' is not CLS-compliant
// Line: 8

using System;
[assembly:CLSCompliant(true)]

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