Merge pull request #1624 from esdrubal/getprocesstimes
[mono.git] / mcs / tests / test-null-operator-011.cs
1 static class Crash
2 {
3         static string GetFoo ()
4         {
5                 return null;
6         }
7
8         static void Main ()
9         {
10                 (GetFoo ()?.ToLower ()).ToUpper ();
11         }
12 }