Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gtest-119.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d3cc47c45aa5c3a436277d7608ae7ef93fb592b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Compiler options: -unsafe
using System;

public class Tests {

	unsafe public static void Main () {
		Console.WriteLine (typeof (void).Name);
		Console.WriteLine (typeof (void*).Name);
		Console.WriteLine (typeof (void**).Name);
	}
}