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

test-320.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 57981fb8f751a884bb8acd54a0f33fb9c643e68d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Compiler options: -unsafe


using System;

unsafe class X {

	unsafe public X (sbyte *value, int startIndex, int length) {
	}

	public static void Main ()
	{
		new X ((sbyte*)null, 0, 10);
	}
}