solidity/test/libsolidity/syntaxTests/inlineAssembly/storage_reference_fine.sol
2018-06-28 16:45:53 -04:00

12 lines
177 B
Solidity

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