solidity/test/libsolidity/semanticTests/viaYul/local_assignment.sol
2022-05-19 20:23:28 +02:00

11 lines
172 B
Solidity

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