Add support for Windows x64 Full AOT + LLVM + Interpreter on CI. (#15276)
[mono-project.git] / mcs / tests / test-521.cs
blobc71b7f965ae905db283b44209d956d0ff1d3122a
1 using System;
3 public class Tests {
5 public delegate void CallTargetWithContextN (object o, params object[] args);
7 public static void CallWithContextN (object o, object[] args) {
10 public static void Main () {
11 object o = new CallTargetWithContextN (CallWithContextN);