solidity/test/libsolidity/semanticTests/inlineAssembly/inline_assembly_function_call.sol
2023-05-11 10:56:55 -05:00

19 lines
397 B
Solidity

contract C {
function f() public {
assembly {
function asmfun(a, b, c) -> x, y, z {
x := a
y := b
z := 7
}
let a1, b1, c1 := asmfun(1, 2, 3)
mstore(0x00, a1)
mstore(0x20, b1)
mstore(0x40, c1)
return (0, 0x60)
}
}
}
// ----
// f() -> 1, 2, 7