[System.Net.Http] HttpClient timeout range checks. Fixes #25755
[mono.git] / mcs / tests / gtest-119.cs
1 // Compiler options: -unsafe
2 using System;
3
4 public class Tests {
5
6         unsafe public static void Main () {
7                 Console.WriteLine (typeof (void).Name);
8                 Console.WriteLine (typeof (void*).Name);
9                 Console.WriteLine (typeof (void**).Name);
10         }
11 }