aboutsummaryrefslogtreecommitdiff
path: root/core/src/test/resources/com/google/googlejavaformat/java/testdata/ParameterComment.output
blob: d26ca11355e4c517a1de1ab79acc3017e18adc7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package com.google.googlejavaformat.java.test;

/** Tests for formatting of ParameterComments. */
class Q {
  static void f(int a) {
    f(/* a= */ 1);
    f(/* a= */ 1);
  }

  static void g(int a, int b, int c, int d, int e, int f, int g, int h, int i, int j, int k) {
    g(
        /* a= */ 1,
        /* b= */ 1,
        /* c= */ 1,
        /* d= */ 1,
        /* e= */ 1,
        /* f= */ 1,
        /* g= */ 1,
        /* h= */ 1,
        /* i= */ 1,
        /* j= */ 1,
        /* k= */ 1);
    g(
        /* a= */ 1,
        /* b= */ 1,
        /* c= */ 1,
        /* d= */ 1,
        /* e= */ 1,
        /* f= */ 1,
        /* g= */ 1,
        /* h= */ 1,
        /* i= */ 1);
  }

  static void h(Object... xs) {
    h(/* xs...= */ null);
  }
}