tests/sav: Update tests results
[nit.git] / tests / sav / nitpretty_args7.res
index e404557..8d2fb41 100644 (file)
@@ -23,13 +23,13 @@ end
 
 class B
        super A
-
        redef type FOO: Int
 
        # comment 3
        redef fun foo do return bar # comment
 
-       redef fun bar do
+       redef fun bar
+       do
                return 10 # comment 4
        end
 
@@ -37,8 +37,12 @@ class B
        protected fun baz2 do end
 
        fun other: String do
-               return "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" +
-                       "aaaaaaaaaaaaaaaaaaaaaaaaaa"
+               return "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
+       end
+
+       fun foo1(arr: Array[String], len: Int, ind: Int): String
+       do
+               return "Hello World!"
        end
 end