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

cs3009-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5b9b57be3b4917e20deba19e1ef3998320f7762f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// cs3009.cs: 'AttributesForm': base type 'BaseClass' is not CLS-compliant
// Line: 14
// The error is reported intentionally twice.

using System;

[assembly:CLSCompliant(true)]

[CLSCompliant(false)]
public class BaseClass
{
}

public class AttributesForm : BaseClass
{
}

public class AttributesForm_2 : BaseClass
{
}