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

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

using System;
[assembly:CLSCompliant(true)]

public class C {
        public void _() {}
}