X-Git-Url: http://nitlanguage.org diff --git a/tests/base_arg_default_autoinit.nit b/tests/base_arg_default_autoinit.nit index 6ea74cf..4087bb7 100644 --- a/tests/base_arg_default_autoinit.nit +++ b/tests/base_arg_default_autoinit.nit @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -import standard::kernel +import core::kernel class A var mandatory: Int @@ -71,11 +71,11 @@ a.foo #alt1#a = new B(1) #alt1#a.foo -a = new B(1,4) -a.foo +#alt1#a = new B(1,4) +#alt1#a.foo -a = new B(1,2,4) -a.foo +#alt1#a = new B(1,2,4) +#alt1#a.foo a = new B(1,2,3,4) a.foo @@ -86,8 +86,8 @@ a.foo #alt1#a = new C(1) #alt1#a.foo -a = new C(4,1) -a.foo +#alt1#a = new C(4,1) +#alt1#a.foo a = new C(3,4,1) a.foo