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

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

using System;
[assembly:CLSCompliant (true)]

[CLSCompliant (true)]
public interface I {
    uint Foo { set; }
}