[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[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 }