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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ====
|
2020-11-21 13:54:16 +00:00
|
|
|
// compileToEwasm: also
|
2019-03-18 10:21:41 +00:00
|
|
|
// ----
|
|
|
|
// f(uint256,uint256): 5, 6 -> 5, 6
|