[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / test-521.cs
1 using System;
2
3 public class Tests {
4
5         public delegate void CallTargetWithContextN (object o, params object[] args);
6
7         public static void CallWithContextN (object o, object[] args) {
8         }
9
10         public static void Main () {
11                 object o = new CallTargetWithContextN (CallWithContextN);
12         }
13 }