[System.Net.Http] HttpClient timeout range checks. Fixes #25755
[mono.git] / mcs / tests / test-null-operator-01.cs
index 2c6784c93b6d67cffee8af92e08605fbd16ae412..63cae1282ee984b2337b3fbdccfebbdc131795a6 100644 (file)
@@ -97,10 +97,9 @@ class C
 
     static int TestGeneric<T> (T t) where T : class, I
     {
-        // FIXME:
-        //var t1 = t?.Method ();
-        //if (t1 != null)
-        //  return 1;
+        var t1 = t?.Method ();
+        if (t1 != null)
+            return 1;
 
         T[] at = null;
         var t2 = at?.Length;