Merge pull request #4033 from ntherning/no-stdcall-for-icalls-on-windows-32-bit
[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 }