From bcbfa641ecac3ff389d0ce49a7b3586f013f6bb4 Mon Sep 17 00:00:00 2001 From: Trioct Date: Sun, 22 May 2022 06:50:25 -0500 Subject: Fix const typed array assignment --- modules/gdscript/tests/scripts/analyzer/typed_array_assignment.gd | 2 ++ modules/gdscript/tests/scripts/analyzer/typed_array_assignment.out | 2 ++ 2 files changed, 4 insertions(+) create mode 100644 modules/gdscript/tests/scripts/analyzer/typed_array_assignment.gd create mode 100644 modules/gdscript/tests/scripts/analyzer/typed_array_assignment.out (limited to 'modules/gdscript/tests') diff --git a/modules/gdscript/tests/scripts/analyzer/typed_array_assignment.gd b/modules/gdscript/tests/scripts/analyzer/typed_array_assignment.gd new file mode 100644 index 0000000000..9f86d0531c --- /dev/null +++ b/modules/gdscript/tests/scripts/analyzer/typed_array_assignment.gd @@ -0,0 +1,2 @@ +func test(): + const arr: Array[int] = ["Hello", "World"] diff --git a/modules/gdscript/tests/scripts/analyzer/typed_array_assignment.out b/modules/gdscript/tests/scripts/analyzer/typed_array_assignment.out new file mode 100644 index 0000000000..26b6e13d4f --- /dev/null +++ b/modules/gdscript/tests/scripts/analyzer/typed_array_assignment.out @@ -0,0 +1,2 @@ +GDTEST_ANALYZER_ERROR +Assigned value for constant "arr" has type Array[String] which is not compatible with defined type Array[int]. -- cgit v1.2.3