[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs4017.cs
1 // CS4017: The CallerLineNumberAttribute attribute cannot be applied because there is no standard conversion from `int' to `byte'
2 // Line: 8
3
4 using System.Runtime.CompilerServices;
5
6 class C
7 {
8         public void Trace([CallerLineNumber] byte member = 1)
9         {
10         }
11 }