solidity/test/libsolidity/semanticTests/viaYul/local_assignment.sol
2019-04-11 15:45:14 +02:00

11 lines
171 B
Solidity

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