[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / test-anon-153.cs
blob182c73d371d9c2eaac29462d004cfc8bd346b259
1 using System;
2 using System.Collections.Generic;
4 namespace TestComp
6 class Program
8 internal class MyClass
10 public delegate void MyDelegate (out List<int> intToAdd);
11 private void MyTemplate (MyDelegate myData)
14 public void UseATemplate ()
16 MyTemplate (
17 delegate (out List<int> intToAdd) {
18 intToAdd = new List<int> ();
19 intToAdd.Add (0);
25 public static void Main (string[] args)