<html>
    <head>
      <base href="https://llvm.org/bugs/" />
    </head>
    <body><table border="1" cellspacing="0" cellpadding="8">
        <tr>
          <th>Bug ID</th>
          <td><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW --- - Bad indent for java code with -style=Google"
   href="https://llvm.org/bugs/show_bug.cgi?id=24905">24905</a>
          </td>
        </tr>

        <tr>
          <th>Summary</th>
          <td>Bad indent for java code with -style=Google
          </td>
        </tr>

        <tr>
          <th>Product</th>
          <td>clang
          </td>
        </tr>

        <tr>
          <th>Version</th>
          <td>trunk
          </td>
        </tr>

        <tr>
          <th>Hardware</th>
          <td>PC
          </td>
        </tr>

        <tr>
          <th>OS</th>
          <td>All
          </td>
        </tr>

        <tr>
          <th>Status</th>
          <td>NEW
          </td>
        </tr>

        <tr>
          <th>Severity</th>
          <td>normal
          </td>
        </tr>

        <tr>
          <th>Priority</th>
          <td>P
          </td>
        </tr>

        <tr>
          <th>Component</th>
          <td>Formatter
          </td>
        </tr>

        <tr>
          <th>Assignee</th>
          <td>unassignedclangbugs@nondot.org
          </td>
        </tr>

        <tr>
          <th>Reporter</th>
          <td>nicolasweber@gmx.de
          </td>
        </tr>

        <tr>
          <th>CC</th>
          <td>djasper@google.com, klimek@google.com, llvm-bugs@lists.llvm.org
          </td>
        </tr>

        <tr>
          <th>Classification</th>
          <td>Unclassified
          </td>
        </tr></table>
      <p>
        <div>
        <pre>Bad clang-format output:

$ bin/clang-format -style=Google test.java
class a {
  void f9() {
    {
      {
        {
         
mFakeScanner.mScanCallback.onScanResult(ScanSettings.CALLBACK_TYPE_ALL_MATCHES,
              new FakeScanResult(new FakeBluetoothDevice(
                                     this, "01:00:00:90:1E:BE",
"FakeBluetoothDevice"),
                                                      uuids));
        }
      }
    }
  }
}


Since bugzilla is going to wrap this, here's the bad three lines at indent 0:

mFakeScanner.mScanCallback.onScanResult(ScanSettings.CALLBACK_TYPE_ALL_MATCHES,
    new FakeScanResult(new FakeBluetoothDevice(
                           this, "01:00:00:90:1E:BE", "FakeBluetoothDevice"),
                                            uuids));


Note how uuids isn't aligned with anything. Renaming the same file th .cpp and
running clang-format produces much better output:

class a {
  void f9() {
    {
      {
        {
          mFakeScanner.mScanCallback.onScanResult(
              ScanSettings.CALLBACK_TYPE_ALL_MATCHES,
              new FakeScanResult(
                  new FakeBluetoothDevice(this, "01:00:00:90:1E:BE",
                                          "FakeBluetoothDevice"),
                  uuids));
        }
      }
    }
  }
}

(upstream bug: <a href="http://crbug.com/534538">http://crbug.com/534538</a>)</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are on the CC list for the bug.</li>
      </ul>
    </body>
</html>