Update pipeline-netcore-runtime.yml
[mono-project.git] / mcs / tests / test-debug-14.cs
blob1cde8f000a0ad08cdbca695c66eec278a090f76c
1 using System;
3 class C
5 public static void Main ()
9 void Test_1()
11 Action a =
12 () =>
13 Console.WriteLine ();
16 void Test_2()
18 Action a =
19 () =>
21 Console.WriteLine ();
25 void Test_3()
27 Action a = delegate
29 Console.WriteLine ();
33 void Test_Capturing_1(int arg)
35 Func<int> a =
36 () => arg;