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

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

public unsafe struct A
{
	public B* pB;
}

public unsafe struct B
{
	public A* pA;
}

public class C
{
	public static void Main ()
	{
	}
}