mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
23 lines
287 B
Plaintext
23 lines
287 B
Plaintext
{
|
|
function f() -> x, y {
|
|
let a, b := f()
|
|
let u
|
|
}
|
|
let r
|
|
let s := 3
|
|
let t
|
|
}
|
|
// ----
|
|
// step: varDeclInitializer
|
|
//
|
|
// {
|
|
// function f() -> x, y
|
|
// {
|
|
// let a, b := f()
|
|
// let u := 0
|
|
// }
|
|
// let r := 0
|
|
// let s := 3
|
|
// let t := 0
|
|
// }
|