[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs8200-6.cs
1 // CS8200: Out variable and pattern variable declarations are not allowed within constructor initializers, field initializers, or property initializers
2 // Line: 6
3
4 class X
5 {
6     public static bool Test { get; } = Foo () is bool x;
7
8     static object Foo ()
9     {
10         return false;
11     }
12 }