add bug info
[mcs.git] / tests / gtest-026.cs
blob039708680d487e8907b3748896fae720d4d0644d
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 static void Main ()
15 Foo<int> foo = new Foo<int> ();
16 foo.Hello = 9;