lib/html: implement the tag list as an hashset instead of a array.
[nit.git] / tests / base_virtual_type7.nit
index bde4a77..76fd5dc 100644 (file)
@@ -19,7 +19,7 @@ import kernel
 class A
        type E: F
        type F: E
-       readable writable var _e: nullable E = null
+       var e: nullable E = null is writable
        init do end
 end