[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / test-779.cs
1 using System;
2
3 public static class Test
4 {
5         public static int Main ()
6         {
7                 if (test1 (15, 15))
8                         return 1;
9
10                 return 0;
11         }
12
13         //Bug #610126
14         static bool test1 (long a, long b)
15         {
16                 if ((a & b) == 0L) return true;
17                 return false;
18         }
19 }