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: 3994371026b2b59c9e538730429fb4bc0853a2b7 (plain)
1
2
3
4
5
6
7
8
9
// CS3008: Identifier `_I' is not CLS-compliant
// Line: 8
// Compiler options: -warnaserror -warn:1

using System;
[assembly:CLSCompliant(true)]

public interface _I {
}