Merge: tests: Test result update for `curl_http`
[nit.git] / tests / base_virtual_type_redef.nit
index 837bd46..e8feb60 100644 (file)
 import kernel
 
 interface Number
-       type OTHER: Number
+       type OTHE: Number
+       type OTHE2: Int
+       type OTHE3: Object is fixed
 end
-
 redef class Int
        super Number
 
-       redef type OTHER: Int
+       redef type OTHE: Int
+       #alt1#redef type OTHE2: Number
+       #alt2#redef type OTHE3: Int
 end