solidity/test/libsolidity/syntaxTests/inlineAssembly/storage_reference_fine.sol
2018-07-03 22:51:55 +02:00

12 lines
179 B
Solidity

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