[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0165-30.cs
1 // CS0165: Use of unassigned local variable `a'
2 // Line: 9
3
4 using System;
5
6 class Test {
7         
8         static void Main () {
9                 Action a = () => a();
10         }
11 }