[loader] LoadFrom of problematic images should reprobe
[mono-project.git] / mcs / errors / cs0592-8.cs
blob24df2e8dc36886c69994b820b8dd08abe7e7d921
1 // 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
2 // Line : 8
4 using System;
6 public class C
8 [return: Obsolete]
9 public void Test (int a)
12 static public void Main () {}