(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0592-6.cs
blobae495fbb1b0eab67efcbc262e930c138cf7ec582
1 // cs0592-6.cs: Attribute 'TestAttribute' is not valid on this declaration type. It is valid on 'constructor' declarations only.
2 // Line: 6
4 using System;
6 [TestAttribute ()]
7 delegate void D ();
9 [AttributeUsage(AttributeTargets.Constructor)]
10 public class TestAttribute: Attribute {