solidity/test/libsolidity/syntaxTests/indexing/fixedbytes_out_of_bounds_index.sol
2022-04-01 23:41:18 -05:00

9 lines
141 B
Solidity

contract C {
function f() public {
bytes32 b;
b[64];
}
}
// ----
// TypeError 1859: (56-61='b[64]'): Out of bounds array access.