solidity/test/libsolidity/syntaxTests/inlineAssembly/storage_slot_assign.sol
2021-04-12 14:54:36 +02:00

13 lines
239 B
Solidity

contract C {
uint[] x;
fallback() external {
uint[] storage y = x;
assembly {
y.slot := 1
y.offset := 2
}
}
}
// ----
// TypeError 9739: (138-146): Only .slot can be assigned to.