Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-460.cs
1 public class Foo<T>
2 {
3         protected class Bar<V>
4         {
5         }
6 }
7
8 public interface IBaz
9 {
10 }
11
12 public class FooImpl : Foo<IBaz>
13 {
14         Bar<int> f;
15
16         private class BarImpl : Bar<IBaz>
17         {
18         }
19
20         public static int Main ()
21         {
22                 new FooImpl ();
23                 return 0;
24         }
25 }