[System.Net.Http] HttpClient timeout range checks. Fixes #25755
[mono.git] / mcs / tests / gtest-282.cs
1 class Foo : C<Foo.Bar> {
2         public class Bar {}
3 }
4 class C<T> {}
5
6 class Test {
7         static Foo f = new Foo ();
8         public static void Main () { System.Console.WriteLine (f.GetType ().BaseType); }
9 }