2010-05-27 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1729-4.cs
blob3dbebd6535e6266730d0eab8209d20bededf4c59
1 // CS1729: The type `IgnoreAttribute' does not contain a constructor that takes `0' arguments
2 // Line: 14
4 using System;
6 public class IgnoreAttribute : Attribute {
8 public IgnoreAttribute (String name) { }
11 class C {
13 [Ignore]
14 public void Method ()