X-Git-Url: http://nitlanguage.org diff --git a/tests/base_isa_cast4.nit b/tests/base_isa_cast4.nit index 9104a90..65ae3d6 100644 --- a/tests/base_isa_cast4.nit +++ b/tests/base_isa_cast4.nit @@ -21,12 +21,12 @@ class A end class B -special A - meth foo(i: Int) do i.output + super A + fun foo(i: Int) do i.output init do end end -meth maybe: Bool do return true +fun maybe: Bool do return true var a: A = new B