[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs1673.cs
blobb32861056352fe617074b8464b57d807cf43d13f
1 // CS1673: Anonymous methods inside structs cannot access instance members of `this'. Consider copying `this' to a local variable outside the anonymous method and using the local instead
2 // Line:
3 using System;
5 struct S {
6 delegate void T ();
8 int f;
10 public int Test ()
12 T t = delegate {
13 f = 1;
15 return 0;
18 static void Main ()