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

cs1671-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f43287ea3b2a3ac8125c9594633c1a047591ce91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// cs1518.cs : Attribute cannot be applied to namespaces. Expected class, delegate, enum, interface, or struct
// Line : 14

using System;

[assembly: CLSCompliant (false)]

namespace N
{
}

[assembly: Obsolete]

namespace M
{
}

public class C {
    public static void Main () {}
}