solidity/test/libsolidity/semanticTests/inlineAssembly/inlineasm_empty_let.sol

17 lines
208 B
Solidity

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