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

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

using System;

class X
{
	public static void Main ()
	{
		Span<int> stackSpan = stackalloc int[100];
	}

	unsafe void Foo ()
	{

	}
}