X-Git-Url: http://nitlanguage.org diff --git a/tests/error_spe_fun.nit b/tests/error_spe_fun.nit index c98cc5a..669e139 100644 --- a/tests/error_spe_fun.nit +++ b/tests/error_spe_fun.nit @@ -19,6 +19,9 @@ fun toto: Int do return 1 end end class B -special A + super A redef fun toto do end end + +var b = new B +b.toto.output