From 540821a264976b7295d2b32d9298992d00f1a17e Mon Sep 17 00:00:00 2001 From: George Marques Date: Fri, 15 Oct 2021 10:40:50 -0300 Subject: GDScript: Fix inferred typed array marked as constant --- .../analyzer/features/typed_array_inferred_access_isnt_constant.gd | 6 ++++++ .../analyzer/features/typed_array_inferred_access_isnt_constant.out | 2 ++ 2 files changed, 8 insertions(+) create mode 100644 modules/gdscript/tests/scripts/analyzer/features/typed_array_inferred_access_isnt_constant.gd create mode 100644 modules/gdscript/tests/scripts/analyzer/features/typed_array_inferred_access_isnt_constant.out (limited to 'modules/gdscript/tests/scripts') diff --git a/modules/gdscript/tests/scripts/analyzer/features/typed_array_inferred_access_isnt_constant.gd b/modules/gdscript/tests/scripts/analyzer/features/typed_array_inferred_access_isnt_constant.gd new file mode 100644 index 0000000000..55c40cb971 --- /dev/null +++ b/modules/gdscript/tests/scripts/analyzer/features/typed_array_inferred_access_isnt_constant.gd @@ -0,0 +1,6 @@ +# https://github.com/godotengine/godot/issues/53640 + +func test(): + var arr := [0] + arr[0] = 1 + print(arr[0]) diff --git a/modules/gdscript/tests/scripts/analyzer/features/typed_array_inferred_access_isnt_constant.out b/modules/gdscript/tests/scripts/analyzer/features/typed_array_inferred_access_isnt_constant.out new file mode 100644 index 0000000000..a7f1357bb2 --- /dev/null +++ b/modules/gdscript/tests/scripts/analyzer/features/typed_array_inferred_access_isnt_constant.out @@ -0,0 +1,2 @@ +GDTEST_OK +1 -- cgit v1.2.3