| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- // config: line_length = 120
- contract FunctionCall {
- function foo() public pure {
- bar(1111111111111111111111111111111111111111111111111111, 111111111111111111111111111111111111111111111111111);
- bar(1111111111111111111111111111111111111111111111111112, 1111111111111111111111111111111111111111111111111112);
- bar(1111111111111111111111111111111111111111111111111113, 11111111111111111111111111111111111111111111111111113); // the semicolon is not considered when determining line break
- bar(
- 1111111111111111111111111111111111111111111111111114, 111111111111111111111111111111111111111111111111111114
- );
- bar(
- 111111111111111111111111111111111115,
- 11111111111111111111111111111111115,
- 11111111111111111111111111111111115
- );
- bar(
- 111111111111111111111111111111111111111111111111111116,
- 111111111111111111111111111111111111111111111111111116
- );
- bar(
- 111111111111111111111111111111111111111111111111111117,
- 1111111111111111111111111111111111111111111111111111117
- );
- }
- function bar(uint256, uint256) private pure {
- return;
- }
- }
- function a(uint256 foo) {
- foo;
- MyContract c = new MyContract(address(0), hex"beef");
- }
- function b() {
- a({foo: 5});
- }
- contract MyContract {
- constructor(address arg, bytes memory data) {}
- }
|