solidity/test/libsolidity/semanticTests/inlineAssembly/inlineasm_empty_let.sol
2020-03-19 14:42:25 +01: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