[System.Net.Http] HttpClient timeout range checks. Fixes #25755
[mono.git] / mcs / tests / test-debug-08.cs
1 // Compiler options: -optimize
2
3 class C
4 {
5         public static void Main ()
6         {
7                 return;
8         }
9         
10         void Foo ()
11         {
12         }
13         
14         int Foo2 ()
15         {
16                 return 7;
17         }
18         
19         int Foo3 ()
20         {
21                 {
22                         {
23                                 return 2;
24                         }
25                 }
26         }
27 }