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

9 lines
241 B
Solidity

contract test {
function a(uint a, uint b, uint c) public returns (uint r) { r = a * 100 + b * 10 + c * 1; }
function b() public returns (uint r) { r = a({c: 3, a: 1, b: 2}); }
}
// ====
// compileToEwasm: also
// ----
// b() -> 123