X-Git-Url: http://nitlanguage.org diff --git a/tests/base_inline.nit b/tests/base_inline.nit index 1e85bb6..1f31600 100644 --- a/tests/base_inline.nit +++ b/tests/base_inline.nit @@ -18,17 +18,17 @@ import kernel interface Inline__ fun foo do 1.output - fun bar: Int = 2 + fun bar: Int do return 2 end class A -special Inline__ + super Inline__ redef fun bar do return 20 fun baz do 3.output end class B -special A + super A redef fun foo do 100.output redef fun bar do return 200 redef fun baz do 300.output