[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0657-12.cs
blob105163f901738b94aac0ca876f3b0360aed4021f
1 // CS0657: `type' is not a valid attribute location for this declaration. Valid attribute locations for this declaration are `method, param, return'. All attributes in this section will be ignored
2 // Line: 15
3 // Compiler options: -warnaserror
5 using System;
7 [AttributeUsage(AttributeTargets.All)]
8 public class TestAttribute: Attribute
12 class C
14 int Prop {
15 [type:Test]
16 set {