Display error messages instead of stack traces.
[mcs.git] / errors / cs0592-8.cs
blob78a0428689fcdf4a57f0271d1cbdcf3b7b508f5b
1 // cs0592-8.cs: Attribute `Obsolete' 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
4 using System;
6 public class C
8 [return: Obsolete]
9 public void Test (int a)
12 static public void Main () {}