solidity/test/libsolidity/semanticTests/array/bytes_length_member.sol
Daniel Kirchner 1a0605c594 Update tests.
2021-11-03 12:39:55 +01:00

22 lines
397 B
Solidity

contract c {
function set() public returns (bool) {
data = msg.data;
return true;
}
function getLength() public returns (uint256) {
return data.length;
}
bytes data;
}
// ====
// compileViaYul: also
// ----
// getLength() -> 0
// set(): 1, 2 -> true
// gas irOptimized: 110433
// gas legacy: 110726
// gas legacyOptimized: 110567
// getLength() -> 68