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

test-789.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5a8586333447241644e3379a4f47fa9db3c7e8e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;

class Program
{
	public static void Main ()
	{
		Action action = () => Console.WriteLine (1);
		action += null;
		action = null + action;
		action = action + null;
		action ();
	}
}