From 7f9f43ede6f62db059782df60def28269871d026 Mon Sep 17 00:00:00 2001 From: Aleksandr Emelenko Date: Mon, 16 Oct 2023 12:49:33 +0300 Subject: [PATCH] Fixed ets2panda build Signed-off-by: Aleksandr Emelenko --- ets2panda/test/compiler/ets/identifierReference13-expected.txt | 2 +- ets2panda/test/compiler/ets/identifierReference8-expected.txt | 2 +- ets2panda/test/compiler/ets/identifierReference9-expected.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ets2panda/test/compiler/ets/identifierReference13-expected.txt b/ets2panda/test/compiler/ets/identifierReference13-expected.txt index f11520714b..7d43e0af95 100644 --- a/ets2panda/test/compiler/ets/identifierReference13-expected.txt +++ b/ets2panda/test/compiler/ets/identifierReference13-expected.txt @@ -973,4 +973,4 @@ } } } -TypeError: Method used in wrong context [identifierReference13.ets:24:20] +TypeError: Property 'foo' does not exist on type 'B' [identifierReference13.ets:24:20] diff --git a/ets2panda/test/compiler/ets/identifierReference8-expected.txt b/ets2panda/test/compiler/ets/identifierReference8-expected.txt index 83755755a3..1baf9386c3 100644 --- a/ets2panda/test/compiler/ets/identifierReference8-expected.txt +++ b/ets2panda/test/compiler/ets/identifierReference8-expected.txt @@ -643,4 +643,4 @@ } } } -TypeError: Method used in wrong context [identifierReference8.ets:24:10] +TypeError: Property 'foo' does not exist on type 'A' [identifierReference8.ets:24:10] diff --git a/ets2panda/test/compiler/ets/identifierReference9-expected.txt b/ets2panda/test/compiler/ets/identifierReference9-expected.txt index 353fdd49ca..00f370095c 100644 --- a/ets2panda/test/compiler/ets/identifierReference9-expected.txt +++ b/ets2panda/test/compiler/ets/identifierReference9-expected.txt @@ -643,4 +643,4 @@ } } } -TypeError: Method used in wrong context [identifierReference9.ets:24:10] +TypeError: Property 'foo' does not exist on type 'A' [identifierReference9.ets:24:10] -- Gitee