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