We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
When using very large indices, the bounds checking code fails. Example:
let x = [0i32, ..16]; assert_eq(x[1u << 63],0); assert_eq(&x[0], &x[1u << 63]);
Both asserts pass on a 64 bit system.