solidity/test/libsolidity/syntaxTests/inline_arrays/lvalues_as_inline_array.sol
2018-11-29 19:49:38 +01:00

9 lines
178 B
Solidity

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