stdlib/strings: Moved Substring to Buffer since it was in no way similar to the Strin...
[nit.git] / tests / base_virtual_type3.nit
index 0f33aa8..929d84a 100644 (file)
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-import base_virtual_type2
 import array
+import base_virtual_type2
 
 class C
-special A
-       readable writable attr _tab: Array[E]
+       super A
+       readable writable var _tab: nullable Array[E]
        init do end
 end