You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Disclaimer: I don't know if this is supported or expected to work.
Using v0.4-DEV on x86-64 Linux, if I try to access an array using an index from a list of list of indices (List[List[int]]) while iterating, Cyber panics (third print in the code). It seems like maybe the type information is wrong because if I wrap the value in int(...), then everything works fine (second print in the code). Accessing outside of a "for each" loop seems to work fine as well (first print in the code).
Disclaimer: I don't know if this is supported or expected to work.
Using v0.4-DEV on x86-64 Linux, if I try to access an array using an index from a list of list of indices (
List[List[int]]
) while iterating, Cyber panics (thirdprint
in the code). It seems like maybe the type information is wrong because if I wrap the value inint(...)
, then everything works fine (secondprint
in the code). Accessing outside of a "for each" loop seems to work fine as well (firstprint
in the code).Minimal code sample:
I'm expecting the program to print the number 4 three times. Instead, I see:
The text was updated successfully, but these errors were encountered: