[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / tests / gtest-151.cs
blob247b330c224aa7d13378e204abce2c6cd85d31cb
1 class Test<T> where T: struct{
2 public Test(){
3 T s = new T();
7 class X
9 public static int Main ()
11 new Test<bool> ();
12 return 0;