Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / errors / cs1671-2.cs
1 // CS1671: A namespace declaration cannot have modifiers or attributes
2 // Line : 14
3
4 using System;
5
6 [assembly: CLSCompliant (false)]
7
8 namespace N
9 {
10 }
11
12 [assembly: Obsolete]
13
14 namespace M
15 {
16 }
17
18 public class C {
19     public static void Main () {}
20 }