[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0592-9.cs
blob857d369e41e97500c55748d5d854c6850429f8ab
1 // CS0592: The attribute `SAttribute' is not valid on this declaration type. It is valid on `return' declarations only
2 // Line : 12
4 using System;
6 [AttributeUsage (AttributeTargets.ReturnValue)]
7 class SAttribute: Attribute {}
9 public class C
11 int Prop {
12 [param: S]
13 set {