[System.Net.Http] HttpClient timeout range checks. Fixes #25755
[mono.git] / mcs / tests / test-anon-88.cs
1 using System;
2
3 class C
4 {
5         public delegate void D ();
6
7         public static int Main ()
8         {
9                 new C ().Test ();
10                 return 0;
11         }
12
13         void Test ()
14         {
15                 int l1 = 0;
16
17                 if (l1 == 0) {
18                         int l2 = 1;
19                         if (l2 == 1) {
20                                 D dd = delegate {
21                                         int l3 = 2;
22                                         D d2 = delegate { int x = l1; int z = l3; };
23                                         D d22 = delegate { int x = 1; };
24                                 };
25                         }
26
27                         D d3 = delegate { int y = l2; };
28                 }
29
30                 D d1 = delegate { int x = l1; };
31         }
32 }