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) 13 break; 14 if (false == false) 15 break LABEL; 16 } 17 } 18} 19