[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / test-anon-18.cs
1 using System;
2         
3 delegate void A ();
4
5 class DelegateTest {
6         public static void Main (string[] argv)
7         {
8                 Console.WriteLine ("Test");
9
10                 foreach (string arg in argv) {
11                         Console.WriteLine ("OUT: {0}", arg);
12                         A a = delegate {
13                                 Console.WriteLine ("arg: {0}", arg);
14                         };
15                         a ();
16                 }
17         }
18 }
19