* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / errors / cs0592-8.cs
1 // cs0592-8.cs: The attribute `System.ObsoleteAttribute' is not valid on this declaration type. It is valid on `class, struct, enum, constructor, method, property, indexer, field, event, interface, delegate' declarations only
2 // Line : 8
3
4 using System;
5
6 public class C
7 {
8     [return: Obsolete]
9     public void Test (int a)
10     {
11     }
12     static public void Main () {}
13 }