[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / errors / cs0579-10.cs
blobd37b011822c1e7d6757c5f9474235f6ba9618f47
1 // CS0579: The attribute `SimpleAttribute' cannot be applied multiple times
2 // Line : 18
4 using System;
6 [AttributeUsage (AttributeTargets.All, AllowMultiple = false)]
7 public class SimpleAttribute : Attribute {
9 public SimpleAttribute ()
15 [Simple]
16 public partial class Blah { }
18 [Simple]
19 public partial class Blah { }