1package com.google.googlejavaformat.java.test;
2
3/** Tests for ReturnStatements. */
4class R {
5  void f() {
6    return;
7  }
8
9  int f(int x) {
10    return x + x + x + x + x + x + x + x + x + x + x + x + x + x + x + x + x + x + x + x + x + x + x
11        + x + x + x + x + x + x + x + x + x;
12  }
13}
14