blob: 24df2e8dc36886c69994b820b8dd08abe7e7d921 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// CS0592: 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
// Line : 8
using System;
public class C
{
[return: Obsolete]
public void Test (int a)
{
}
static public void Main () {}
}
|