diff options
author | George Marques <george@gmarqu.es> | 2021-10-12 10:41:04 -0300 |
---|---|---|
committer | George Marques <george@gmarqu.es> | 2021-10-12 10:41:04 -0300 |
commit | 34288b24a6d43d0f9a314f4aaccbebe454f9f23e (patch) | |
tree | 7ddffc69d330ff96dc5fe371789f1880fdb53dfa /modules/gdscript/tests/scripts | |
parent | b67e68bce33ff6ee79b9f36d079f81464c12a9e0 (diff) |
GDScript: Fix typed array with custom classes
Diffstat (limited to 'modules/gdscript/tests/scripts')
-rw-r--r-- | modules/gdscript/tests/scripts/analyzer/features/typed_array_with_custom_class.gd | 10 | ||||
-rw-r--r-- | modules/gdscript/tests/scripts/analyzer/features/typed_array_with_custom_class.out | 2 |
2 files changed, 12 insertions, 0 deletions
diff --git a/modules/gdscript/tests/scripts/analyzer/features/typed_array_with_custom_class.gd b/modules/gdscript/tests/scripts/analyzer/features/typed_array_with_custom_class.gd new file mode 100644 index 0000000000..9502f6e196 --- /dev/null +++ b/modules/gdscript/tests/scripts/analyzer/features/typed_array_with_custom_class.gd @@ -0,0 +1,10 @@ +class Inner: + var prop = "Inner" + + +var array: Array[Inner] = [Inner.new()] + + +func test(): + var element: Inner = array[0] + print(element.prop) diff --git a/modules/gdscript/tests/scripts/analyzer/features/typed_array_with_custom_class.out b/modules/gdscript/tests/scripts/analyzer/features/typed_array_with_custom_class.out new file mode 100644 index 0000000000..8f250d2632 --- /dev/null +++ b/modules/gdscript/tests/scripts/analyzer/features/typed_array_with_custom_class.out @@ -0,0 +1,2 @@ +GDTEST_OK +Inner |