X-Git-Url: http://nitlanguage.org diff --git a/tests/base_inline_nested.nit b/tests/base_inline_nested.nit index f25b454..90d344a 100644 --- a/tests/base_inline_nested.nit +++ b/tests/base_inline_nested.nit @@ -18,12 +18,12 @@ import kernel interface Inline__ fun foo do bar.output - fun bar: Int = 2 + fun bar: Int do return 2 fun baz is abstract end class A -special Inline__ + super Inline__ redef fun bar do return 20 redef fun baz do bar.output end