mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
15 lines
222 B
Plaintext
15 lines
222 B
Plaintext
// yul
|
|
{
|
|
function f(a:u256) -> x:u256 { x := a }
|
|
let y:u256 := f(7:u256)
|
|
}
|
|
// ----
|
|
// expressionInliner
|
|
// {
|
|
// function f(a:u256) -> x:u256
|
|
// {
|
|
// x := a
|
|
// }
|
|
// let y:u256 := 7:u256
|
|
// }
|