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

cs3014-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c2cff890f90aab6b5455895254ea16d76a12b7c2 (plain)
1
2
3
4
5
6
7
8
// cs3014-2.cs: 'C' cannot be marked as CLS compliant because the assembly is not marked as compliant
// Line: 7

using System;

[CLSCompliant (true)]
public class C {
}