using System;
public class Program
{
public static void Main()
int i = -2;
i switch {
-1 => Console.WriteLine("foo"),
-2 => Console.WriteLine("bar"),
_ => {}
};
}