[System.Net.Http] HttpClient timeout range checks. Fixes #25755
[mono.git] / mcs / tests / gtest-anontype-08.cs
1 using System;
2
3 static class Test
4 {
5     public static void Main ()
6     {
7         var a = new { X = 1, Y = 2, };
8         Console.WriteLine(a);
9     }
10 }