* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / errors / cs0641.cs
1 // cs0641.cs: 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