[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / test-541.cs
1 using System;
2
3 class ClassMain
4 {
5         delegate void D (int i);
6         
7         public static void Main ()
8         {
9                 if (true) {
10                         const bool test = false;
11                 } else {
12                         test = false;
13                 }
14                 
15                 D d = delegate (int test) { };
16         }
17         
18         static bool test { 
19                 set {
20                 }
21         }
22 }
23