solidity/test/libsolidity/syntaxTests/inline_arrays/lvalues_as_inline_array.sol

9 lines
183 B
Solidity

contract C {
function f() public {
[1, 2, 3]++;
[1, 2, 3] = [4, 5, 6];
}
}
// ----
// TypeError 3025: (47-56): Inline array type cannot be declared as LValue.