summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1671-2.cs
blob: 2ddf12d2c117ee3dfe08f808f6b6eb4ed4f176d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// CS1671: A namespace declaration cannot have modifiers or attributes
// Line : 14

using System;

[assembly: CLSCompliant (false)]

namespace N
{
}

[assembly: Obsolete]

namespace M
{
}

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