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: ae4396541ada539ce251699d6bbf991bc314b41a (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0246.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() {}
}