[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / tests / gtest-521.cs
blobb7f6137b9ef7c6be0f2077a0c2d4d8c1ee2aec15
1 using System;
3 public delegate void D (object o);
5 public class E<T>
7 public class I
9 public event D E;
12 public static void Test ()
14 I i = new I ();
15 i.E += new D (EH);
18 static void EH (object sender)
23 public class M
25 public static void Main ()
27 E<int>.Test ();