View Javadoc
1   /*
2   LeftCurly
3   option = \tNL
4   tokens = STATIC_INIT
5   
6   
7   */
8   
9   package com.puppycrawl.tools.checkstyle.checks.blocks.leftcurly;
10  
11  public class InputLeftCurlyWithTrimOptionProperty {
12  
13      static { // violation ''{' at column 12 should be on a new line'
14      }
15      static
16      {}
17  
18      static class Inner
19      {
20          static { // violation ''{' at column 16 should be on a new line'
21              int i = 1;
22          }
23      }
24  }