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

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

static class BugClass
{
	unsafe delegate void Foo (void* dummy);
	static unsafe void FooImplementation (void* dummy)
	{
	}
	
	static unsafe Foo Bar = new Foo (FooImplementation);
}

class Bug
{
	unsafe int*[] data = new int*[16];
	
	public static void Main ()
	{
	}
}