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

9 lines
145 B
Solidity

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