[System.Net.Http] HttpClient timeout range checks. Fixes #25755
[mono.git] / mcs / tests / test-anon-174.cs
1 delegate int F (int i);
2 class Foo {
3         static int i;
4         static void Main ()
5         {
6                 F f = delegate (int i) { return i; };
7                 i = 0;
8         }
9 }