mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
19 lines
197 B
Plaintext
19 lines
197 B
Plaintext
{
|
|
function f(a) {
|
|
f(1)
|
|
}
|
|
f(mload(0))
|
|
}
|
|
// ----
|
|
// fullInliner
|
|
// {
|
|
// {
|
|
// let f_a := mload(0)
|
|
// f(1)
|
|
// }
|
|
// function f(a)
|
|
// {
|
|
// f(1)
|
|
// }
|
|
// }
|