From d6cee82120d89921d3b1221b9f0fb001338b23b7 Mon Sep 17 00:00:00 2001 From: DieMyst Date: Wed, 25 Oct 2023 18:04:20 +0700 Subject: [PATCH] fix compilation --- integration-tests/aqua/examples/abilities.aqua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/integration-tests/aqua/examples/abilities.aqua b/integration-tests/aqua/examples/abilities.aqua index 83717475..22111fc9 100644 --- a/integration-tests/aqua/examples/abilities.aqua +++ b/integration-tests/aqua/examples/abilities.aqua @@ -114,13 +114,13 @@ func bugLNG258_3() -> i8, i8: res1, res2 <- aB.inner.arrow() <- res1, res2 -ability TestAb: +ability TestAbWithClosure: arrow: -> i8 -func create(a: i8) -> TestAb: +func create(a: i8) -> TestAbWithClosure: closureArrow = () -> i8: <- a - ab = TestAb(arrow = closureArrow) + ab = TestAbWithClosure(arrow = closureArrow) <- ab func multipleAbilityWithClosure() -> i8, i8: