13 lines
135 B
C#
13 lines
135 B
C#
|
static class Crash
|
||
|
{
|
||
|
static string GetFoo ()
|
||
|
{
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
static void Main ()
|
||
|
{
|
||
|
(GetFoo ()?.ToLower ()).ToUpper ();
|
||
|
}
|
||
|
}
|