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

cs3008-4.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f5e63fc6e2793f3641010afd4251c8f36ec1d220 (plain)
1
2
3
4
5
6
7
8
// cs3008.cs: Identifier '_I' is not CLS-compliant
// Line: 7

using System;
[assembly:CLSCompliant(true)]

public interface _I {
}