solidity/test/libsolidity/semanticTests/viaYul/simple_assignment.sol

11 lines
196 B
Solidity
Raw Normal View History

2019-03-18 10:21:41 +00:00
contract C {
function f(uint a, uint b) public pure returns (uint x, uint y) {
x = a;
y = b;
}
}
// ====
// compileViaYul: true
// ----
// f(uint256,uint256): 5, 6 -> 5, 6