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

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

using System;
[assembly:CLSCompliant(true)]

public class _A {
}