Remove invalid tests for image palettes in GdiPlusTest (#5671)
[mono.git] / mcs / errors / cs0579-10.cs
1 // CS0579: The attribute `SimpleAttribute' cannot be applied multiple times
2 // Line : 18
3
4 using System;
5
6 [AttributeUsage (AttributeTargets.All, AllowMultiple = false)]
7 public class SimpleAttribute : Attribute {
8
9         public SimpleAttribute ()
10         {
11         }
12         
13 }
14
15 [Simple]
16 public partial class Blah { }
17
18 [Simple]
19 public partial class Blah { }
20