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

gtest-initialize-13.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7c213e461eb548982010b1493f3a0dd0ec0b784a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;

public struct EventInitializerTest
{
	public event Action a;
	public event Action b;
	public event Action c;

	public static void Main()
	{
		Action d = null;
		var eit = new EventInitializerTest() {
			a = null,
			b = delegate {},
			c = d
		};
	}
}