aboutsummaryrefslogblamecommitdiffstats
path: root/test/libsolidity/syntaxTests/indexing/fixedbytes_without_index.sol
blob: 979ac8a7f72c6ccd31ac7e23c9be90d81614d09e (plain) (tree)
1
2
3
4
5
6
7
8







                                                          
contract C {
  function f() public {
    bytes32 b;
    b[];
  }
}
// ----
// TypeError: (56-59): Index expression cannot be omitted.