solidity/test/libsolidity/semanticTests/array/copying/copy_removes_bytes_data.sol

18 lines
410 B
Solidity
Raw Normal View History

contract c {
function set() public returns (bool) { data1 = msg.data; return true; }
function reset() public returns (bool) { data1 = data2; return true; }
bytes data1;
bytes data2;
}
// ====
// compileViaYul: also
// ----
// set(): 1, 2, 3, 4, 5 -> true
// gas irOptimized: 163790
2021-02-12 12:45:15 +00:00
// gas legacy: 163756
2021-03-11 11:17:50 +00:00
// gas legacyOptimized: 163596
// storage: nonempty
// reset() -> true
// storage: empty