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

9 lines
140 B
Solidity

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