public static void Main()
System.Console.WriteLine($"Prop pattern 1: {b is {Prop: 42.0f}}");
System.Console.WriteLine($"Prop pattern 2: {b is {Prop: 65.0f}}");
{Prop: var x} when x > 10.0f => true,
System.Console.WriteLine($"Guard with switch expr: {check}");
bool check = b is {Prop: var x};
System.Console.WriteLine($"Property pattern in is statement: {check}");
bool check = b is {Prop: var x} && x > 10.0f;
System.Console.WriteLine($"Property check with guard: {check}");