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

cs3008-5.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 503c96d488a5f5986903c5d31a55c75667ec13d8 (plain)
1
2
3
4
5
6
7
8
9
10
// CS3008: Identifier `I._()' is not CLS-compliant
// Line: 9
// Compiler options: -warnaserror -warn:1

using System;
[assembly:CLSCompliant(true)]

public interface I {
        void _();
}