2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0579-10.cs
blob83329397f3c41cb6990e8f84156b415b07ef9a7b
1 // cs0579-10.cs: 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 { }