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

9 lines
143 B
Solidity

contract C {
function f(bool a) public pure returns (bool x) {
bool b = a;
x = b;
}
}
// ----
// f(bool): true -> true