(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs1518-3.cs
blobf43287ea3b2a3ac8125c9594633c1a047591ce91
1 // cs1518.cs : Attribute cannot be applied to namespaces. Expected class, delegate, enum, interface, or struct
2 // Line : 14
4 using System;
6 [assembly: CLSCompliant (false)]
8 namespace N
12 [assembly: Obsolete]
14 namespace M
18 public class C {
19 public static void Main () {}