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

9 lines
150 B
Solidity

contract C {
function f() public {
bytes memory a;
a[];
}
}
// ----
// TypeError 9689: (61-64='a[]'): Index expression cannot be omitted.