solidity/test/libsolidity/syntaxTests/inlineAssembly/storage_reference_fine.sol
2018-08-01 21:57:12 +02:00

12 lines
178 B
Solidity

contract C {
uint[] x;
function() external {
uint[] storage y = x;
assembly {
pop(y_slot)
pop(y_offset)
}
}
}
// ----