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

cs3003-4.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 75c9be3159eea9ac28d90c5044c9e86d2f0111f3 (plain)
1
2
3
4
5
6
7
8
9
// CS3003: Type of 'I.Error' is not CLS-compliant
// Line: 8

using System;
[assembly:CLSCompliant(true)]

public interface I {
        ulong this[bool index] { get; }
}