#nullable enable
class Program
{
static string? s = "42";
static void Use(string s2)
}
static void Clear()
s = null;
static void Main()
if (s == null)
return;
Clear();
Use(s);