Update dependencies from https://github.com/dotnet/arcade build 20190729.1 (#15881)
[mono-project.git] / mcs / tests / gtest-541.cs
blob1984d873cbc416e8971231c0797b0863d751649d
1 public class Foo
5 public class Top<S> where S : Foo
7 public class Base<T> where T : S
9 public class Derived<U> where U : T
11 public void Test ()
18 public class Test
20 public static int Main ()
22 Top<Foo>.Base<Foo>.Derived<Foo> d = new Top<Foo>.Base<Foo>.Derived<Foo> ();
23 d.Test ();
24 return 0;