• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package com.google.googlejavaformat.java.test;
2
3/** Tests for Blocks, BodyDeclarations, BooleanLiterals, and BreakStatements. */
4class B {
5  int x;
6  private int y;
7  public int z;
8
9  void f() {
10    LABEL:
11    while (true != false) {
12      if (false == true) break;
13      if (false == false) break LABEL;
14    }
15  }
16}
17