mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-04-23 00:18:01 +00:00
d2f76b645f
Signed-off-by: xermicus <cyrill@parity.io>
37 lines
670 B
Solidity
37 lines
670 B
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.8;
|
|
|
|
/* runner.json
|
|
{
|
|
"differential": true,
|
|
"actions": [
|
|
{
|
|
"Instantiate": {
|
|
"code": {
|
|
"Solidity": {
|
|
"contract": "Bitwise"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"Call": {
|
|
"dest": {
|
|
"Instantiated": 0
|
|
},
|
|
"data": "3fa4f245"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
*/
|
|
|
|
contract Bitwise {
|
|
function opByte(uint i, uint x) public payable returns (uint ret) {
|
|
assembly {
|
|
ret := byte(i, x)
|
|
}
|
|
}
|
|
}
|