1 package com.google.checkstyle.test.chapter4formatting.rule451wheretobreak; 2 3 class InputSeparatorWrapArrayDeclarator { 4 5 protected int[] arrayDeclarationWithGoodWrapping = new int[ 6 ] {1, 2}; // ok 7 8 protected int[] arrayDeclarationWithBadWrapping = new int 9 [] {1, 2}; // warn 10 11 } 12