solidity/test/libsolidity/semanticTests/array/byte_array_push.sol
2020-05-19 14:47:00 +02:00

20 lines
455 B
Solidity

contract c {
bytes data;
function test() public returns (bool x) {
data.push(0x05);
if (data.length != 1) return true;
if (data[0] != 0x05) return true;
data.push(0x04);
if (data[1] != 0x04) return true;
data.push(0x03);
uint256 l = data.length;
if (data[2] != 0x03) return true;
if (l != 0x03) return true;
}
}
// ====
// compileViaYul: also
// ----
// test() -> false