(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs1518-2.cs
blob22cc74843cdc773f807cb78639e7805b389bfd96
1 // cs1518-2.cs : Attributes cannot be applied to namespaces.
2 // Line: 5
3 using System;
5 [error_1518(11)]
6 namespace Mono.Tests
8 [AttributeUsage(AttributeTargets.All)]
9 public class error_1518Attribute : Attribute
11 private int x;
13 public error_1518Attribute(int x)
15 this.x = x;
18 public int X
20 get
22 return x;
27 [error_1518(10)]
28 public class error_1518Class
30 public error_1518Class()