Update pipeline-netcore-runtime.yml
[mono-project.git] / mcs / tests / test-789.cs
blob5a8586333447241644e3379a4f47fa9db3c7e8e7
1 using System;
3 class Program
5 public static void Main ()
7 Action action = () => Console.WriteLine (1);
8 action += null;
9 action = null + action;
10 action = action + null;
11 action ();