lib: intro `Float.lerp` for simple linear interpolation
[nit.git] / tests / base_inline_nested.nit
index f25b454..90d344a 100644 (file)
@@ -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