Merge pull request #3563 from lewurm/interpreter
[mono.git] / mcs / tests / test-null-operator-03.cs
index c58d689a21e74cef4943188360f86cd036f819c7..2dec27a104c8a1b834bfbc6ecc18b98cca44c74b 100644 (file)
@@ -10,7 +10,9 @@ class C
         if (x == null)
             return 1;
 
-        // TODO: Should it really be of int? type
+        var x2 = "abc"?.GetHashCode();
+        if (x2 == null)
+            return 2;
 
         return 0;
     }