X-Git-Url: http://nitlanguage.org diff --git a/tests/base_virtual_type2.nit b/tests/base_virtual_type2.nit index a5cfaf9..5f86a26 100644 --- a/tests/base_virtual_type2.nit +++ b/tests/base_virtual_type2.nit @@ -19,22 +19,22 @@ import kernel class A type E: T - readable writable attr _e: nullable E = null + var e: nullable E = null is writable end class B -special A + super A init do end end class T - meth foo do 0.output + fun foo do 0.output init do end end class U -special T - redef meth foo do 1.output + super T + redef fun foo do 1.output init do end end