X-Git-Url: http://nitlanguage.org diff --git a/tests/test_accessor.nit b/tests/test_accessor.nit index c470c66..e83de63 100644 --- a/tests/test_accessor.nit +++ b/tests/test_accessor.nit @@ -15,11 +15,11 @@ # limitations under the License. class A - meth p=(i: Int) + fun p=(i: Int) do printn("p: ", i) end - meth q=(i: Int, j: Int) + fun q=(i: Int, j: Int) do printn("q: ", i, j) end