[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0150-4.cs
1 // CS0150: A constant value is expected
2 // Line: 13
3
4 class Program
5 {
6         static int Arg ()
7         {
8                 return 4;
9         }
10
11         static void Main()
12         {
13                 var s = $"{1,Arg()}";
14         }
15 }