solidity/test/libsolidity/semanticTests/extracted/store_bytes.sol
2020-03-18 11:56:43 -05:00

15 lines
297 B
Solidity

// this test just checks that the copy loop does not mess up the stack
contract C {
function save() public returns (uint256 r) {
r = 23;
savedData = msg.data;
r = 24;
}
bytes savedData;
}
// ----
// save() -> 24 # empty copy loop #
// save(): "abcdefg" -> 24