solidity/test/libyul/yulSyntaxTests/function_embedded.yul
2021-04-20 17:38:29 +02:00

9 lines
95 B
Plaintext

{
function f(r, s) -> x {
function g(a) -> b { }
x := g(2)
}
let x := f(2, 3)
}
// ----