Array cannot be Un-Typed, or Array.is_typed() is broken. #72347
Closed as not planned
Description
opened on Jan 30, 2023
Godot version
4.0.beta.16
System information
N/A
Issue description
var typed_array: Array[Node] = []
var array : Array = typed_array
print(array.is_typed())
print((typed_array as Array).is_typed())
var array2 : Array[Variant] = typed_array
print(array2.is_typed())
print((typed_array as Array[Variant]).is_typed())
All prints true
Steps to reproduce
N/A
Activity