[System.Net.Http] HttpClient timeout range checks. Fixes #25755
[mono.git] / mcs / tests / gtest-354.cs
1 interface IA<T>
2 {
3         T Method (int index);
4 }
5
6 interface IB
7 {
8         void Method (int index);
9 }
10
11 interface IC : IA<string>, IB
12 {
13         void Method (params int[] index);
14 }
15
16 class M : IC
17 {
18
19         void IC.Method (params int[] index)
20         {
21         }
22
23         string IA<string>.Method (int index)
24         {
25                 throw new System.NotImplementedException ();
26         }
27
28         void IB.Method (int index)
29         {
30                 throw new System.NotImplementedException ();
31         }
32
33         public static void Main ()
34         {
35                 IC ic = new M ();
36                 ic.Method (1);
37         }
38 }