Fixing #1127 by making return types of auto-generated functions dynamic

This commit is contained in:
Mathis-Z
2023-05-30 22:35:05 +02:00
parent aef9ea7387
commit ac98dd2752
4 changed files with 13 additions and 1 deletions

View File

@@ -77,6 +77,9 @@ func _ready():
# String += operator
assert_equal($Example.test_string_ops(), "ABCĎE")
# UtilityFunctions::str()
assert_equal(example.test_str_utility(), "Hello, World! The answer is 42")
# PackedArray iterators
assert_equal($Example.test_vector_ops(), 105)