[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1576.cs
1 // CS1576: The line number specified for #line directive is missing or invalid
2 // Line: 8
3
4 public struct S
5 {
6    static void Main()
7    {
8       #line "error"
9    }
10 }