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