[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0165-28.cs
1 // CS0165: Use of unassigned local variable `a'
2 // Line: 13
3
4 using System;
5
6 class Program
7 {
8         public static void Main ()
9         {
10                 int a;
11                 string s = "";
12                 var res = s == null || ((a = 1) > 0);
13                 Console.WriteLine (a);
14         }
15 }