[System.Net.Http] HttpClient timeout range checks. Fixes #25755
[mono.git] / mcs / tests / gtest-592.cs
1 using System;
2 using System.Collections.Generic;
3
4 public class Tests
5 {
6         static void A<T>(IReadOnlyCollection<T> otherList)
7         {
8         }
9
10         static void B<T>(IReadOnlyList<T> otherList)
11         {
12         }
13
14         public static void Main ()
15         {
16                 var ifacers = typeof(int[]).GetInterfaces ();
17
18                 var args = new string [0];
19                 A (args);
20                 B (args);
21
22                 IReadOnlyList<int> e1 = new int[0];
23                 IReadOnlyCollection<int> e2 = new int[0];
24         }
25 }