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

13 lines
152 B
Solidity

contract C {
function f() public pure returns (uint a, uint b) {
assembly {
let x
let y, z
a := x
b := z
}
}
}
// ----
// f() -> 0, 0