2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0579-10.cs
blob242640762bda4e8f77d8ee5b46b1e3f044ffb4e3
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 { }