From 6d330d186295931562ea1938eaa360f63c45ca64 Mon Sep 17 00:00:00 2001 From: liu--yw Date: Fri, 14 Mar 2025 00:26:37 +0800 Subject: [PATCH] Add CTE for type alias name conflict Issue: https://gitee.com/openharmony/arkcompiler_ets_frontend/issues/IBP7GL Signed-off-by: liuyiwei Change-Id: I5fb15d91bac11ce13ff4c516d099f2a396e408f7 --- .../03.distinguishable_declarations/spec_decl2.sts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static_core/plugins/ets/tests/ets-templates/04.names_declarations_and_scopes/03.distinguishable_declarations/spec_decl2.sts b/static_core/plugins/ets/tests/ets-templates/04.names_declarations_and_scopes/03.distinguishable_declarations/spec_decl2.sts index 096291cbdb..0cebdbcbaa 100644 --- a/static_core/plugins/ets/tests/ets-templates/04.names_declarations_and_scopes/03.distinguishable_declarations/spec_decl2.sts +++ b/static_core/plugins/ets/tests/ets-templates/04.names_declarations_and_scopes/03.distinguishable_declarations/spec_decl2.sts @@ -24,7 +24,7 @@ class A {} type Person = A -let Person: Person +let Person1: Person function main(): int { return 0; -- Gitee