mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
10 lines
238 B
Solidity
10 lines
238 B
Solidity
|
contract test {
|
||
|
function foo(uint256 a) public returns (bytes4 value) {
|
||
|
return msg.sig;
|
||
|
}
|
||
|
}
|
||
|
// ====
|
||
|
// compileViaYul: also
|
||
|
// ----
|
||
|
// foo(uint256): 0x0 -> 0x2fbebd3800000000000000000000000000000000000000000000000000000000
|