You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function subCall(uint a, uint b) public pure returns(uint) {
return sub({arg2: b, arg1: a});
}
function sub(uint arg1, uint arg2) public pure returns(uint) {
return arg1 - arg2;
}
Output:
Expected:
The text was updated successfully, but these errors were encountered: