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

16 lines
184 B
Solidity
Raw Normal View History

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