X-Git-Url: http://nitlanguage.org diff --git a/tests/base_simple_import.nit b/tests/base_simple_import.nit index 5f9bfc6..195cb0d 100644 --- a/tests/base_simple_import.nit +++ b/tests/base_simple_import.nit @@ -31,10 +31,10 @@ class C init do - 1.output + 10.output end end var a = new C # A complex construction -a.foo(2) # A monormphic call -a.bar(3) # A polymorphic call +a.foo(20) # A monormphic call +a.bar(30) # A polymorphic call