mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
10 lines
306 B
Solidity
10 lines
306 B
Solidity
contract c {
|
|
function foo(uint256 a, uint256 b, uint256 c) public returns (bytes32 d) {
|
|
d = keccak256(abi.encodePacked(a, b, c));
|
|
}
|
|
}
|
|
// ====
|
|
// compileViaYul: also
|
|
// ----
|
|
// foo(uint256,uint256,uint256): 0xa, 0xc, 0xd -> 0xbc740a98aae5923e8f04c9aa798c9ee82f69e319997699f2782c40828db9fd81
|