[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / tests / gtest-026.cs
bloba044d97ca801e369315ddb08e1333f47d4096be2
1 // Test access to class fields outside the generic type declaration.
3 class Foo<T>
5 public T Hello;
7 public Foo ()
8 { }
11 class X
13 public static void Main ()
15 Foo<int> foo = new Foo<int> ();
16 foo.Hello = 9;