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

cs0246-5.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 55c5800508fdf9f4cf32e0f06f7b742bdfb27b7f (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0246-5.cs: The type or namespace name `AAAA' could not be found. Are you missing a using directive or an assembly reference?
// Line: 7

using System;
[assembly:CLSCompliant (true)]

[AAAA(false)]
public sealed class Region
{
    public Region() {}
}