Updated with review feedback.
[mono.git] / mcs / errors / cs1729-4.cs
1 // CS1729: The type `IgnoreAttribute' does not contain a constructor that takes `0' arguments
2 // Line: 14
3
4 using System;
5
6 public class IgnoreAttribute : Attribute {
7
8         public IgnoreAttribute (String name) { }
9 }
10
11 class C {
12         
13         [Ignore]
14         public void Method ()
15         {
16         }
17 }