solidity/test/libsolidity/semanticTests/extracted/inlineasm_empty_let.sol
2020-03-18 11:56:43 -05:00

16 lines
184 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
// ----
// f() -> 0, 0