aboutsummaryrefslogtreecommitdiff
path: root/core/src/test/resources/com/google/googlejavaformat/java/testdata/B27246427.output
blob: 3d591f8f65c353538d4a2e69fb242e74d4dfaade (plain)
1
2
3
4
5
6
7
8
9
10
11
12
enum TrailingComment {
  /** foo */
  FOO,
  /** bar */
  BAR;

  /** a */
  Object a;

  /** b */
  Object b;
}