Closed masonwheeler closed 6 years ago
def Test(): arr as (int) Array.Resize(arr, 5)
Expected: Type inference detects that we're dealing with an array of ints here Observed: Type inference fails, and requires the last line to be stated as Array.Resize[of int](arr, 5)
Array.Resize[of int](arr, 5)
Expected: Type inference detects that we're dealing with an array of ints here Observed: Type inference fails, and requires the last line to be stated as
Array.Resize[of int](arr, 5)