linux-packaging-mono/mcs/tests/test-null-operator-011.cs

13 lines
135 B
C#
Raw Normal View History

static class Crash
{
static string GetFoo ()
{
return null;
}
static void Main ()
{
(GetFoo ()?.ToLower ()).ToUpper ();
}
}