tests: Test result update for `curl_http`
[nit.git] / tests / base_isa_nullable_vt.nit
index 34179d5..d729f35 100644 (file)
@@ -32,12 +32,6 @@ class B[T]
        redef type U: Bool
 end
 
-class C[T]
-       super A[T]
-
-       redef type U: nullable Bool
-end
-
 var a = new A[Object]
 assert a.test(true)
 assert not a.test(null)
@@ -51,9 +45,4 @@ assert not b.test(new Something)
 assert b.test(false)
 assert not b.test(null)
 
-var c = new C[Object]
-assert not c.test(new Something)
-assert c.test(false)
-assert c.test(null)
-
 true.output