Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / errors / cs0641.cs
1 // CS0641: Attribute `System.AttributeUsageAttribute' is only valid on classes derived from System.Attribute
2 // Line: 6
3
4 using System;
5
6 [AttributeUsage (AttributeTargets.All)]
7 public class A
8 {
9 }
10