[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / tests / gtest-104.cs
blobe9d5d2a1b7975c590c17e7010e42cd50f96642ec
1 class MainClass
3 class Gen<T>
5 public void Test ()
6 { }
9 class Der : Gen<int>
13 public static void Main ()
15 object o = new Der ();
16 Gen<int> b = (Gen<int>) o;
17 b.Test ();