1<?php
2
3// This test is checking that the LintPatcher correctly applies adjacent patches
4// with large character delta effects.
5function f(                                                             ) {
6  g( );
7}
8~~~~~~~~~~
9warning:5:12:XHP38:Declaration Formatting
10warning:5:12:XHP25:Spaces Inside Parentheses
11warning:5:12:XHP25:Spaces Inside Parentheses
12warning:6:5:XHP37:Call Formatting
13warning:6:5:XHP25:Spaces Inside Parentheses
14warning:6:5:XHP25:Spaces Inside Parentheses
15~~~~~~~~~~
16<?php
17
18// This test is checking that the LintPatcher correctly applies adjacent patches
19// with large character delta effects.
20function f() {
21  g();
22}
23