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

11 lines
169 B
Solidity

contract C {
function f() public returns (uint x, uint y) {
assembly {
x := true
y := false
}
}
}
// ----
// f() -> 1, 0