[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs8076.cs
1 // CS8076: Missing close delimiter `}' for interpolated expression
2 // Line: 8
3
4 public class Test
5 {
6         public static int Main ()
7         {
8                 var s = $"test { arg ";
9         }
10 }