File tree Expand file tree Collapse file tree
tests/format/FunctionDefinitionsV0.5.0 Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,4 +2,5 @@ contract FunctionDefinitions {
22 function () external {}
33 function () external payable {}
44 function () external modify (123 ) payable {}
5+ function () external modify () payable {}
56}
Original file line number Diff line number Diff line change @@ -11,13 +11,15 @@ contract FunctionDefinitions {
1111 function () external {}
1212 function () external payable {}
1313 function () external modify(123) payable {}
14+ function () external modify() payable {}
1415}
1516
1617=====================================output=====================================
1718contract FunctionDefinitions {
1819 function () external {}
1920 function () external payable {}
2021 function () external payable modify(123) {}
22+ function () external payable modify {}
2123}
2224
2325================================================================================
You can’t perform that action at this time.
0 commit comments