Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-266.cs
1 class Test<T>
2 {
3         int priv;
4         private sealed class Inner<U>
5         {
6                 Test<U> test;
7                 void Foo ()
8                 {
9                         test.priv = 0;
10                 }
11         }
12 }
13
14 class Test { public static void Main () { } }