// Test access to class fields outside the generic type declaration. class Foo[T] { public mutable Hello : T; public this () { } } class X { static Main () : void { mutable foo = Foo (); foo.Hello = 9; } } /* BEGIN-OUTPUT END-OUTPUT */