aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/indexing/fixedbytes_out_of_bounds_index.sol
blob: 8264a8b2943ffbd5ea88177d5c6c01899f59a883 (plain) (blame)
1
2
3
4
5
6
7
8
contract C {
  function f() public {
    bytes32 b;
    b[64];
  }
}
// ----
// TypeError: (56-61): Out of bounds array access.