updating to the latest module.
[mono.git] / mcs / errors / cs0592-8.cs
1 // cs0657.cs : Attribute 'Obsolete' is not valid on this declaration type. It is valid on 'class, struct, enum, constructor, method, property, 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 }