```c# #nullable enable using System; class C { void M() { object? o = null; var s = [|(string?)o|]; Console.WriteLine(s); } } ``` where `[||]` shows the CastExpressionSyntax being used. 