View Javadoc
1   package com.puppycrawl.tools.checkstyle.indentation;
2   
3   public class InputInvalidAssignIndent
4   {
5       void foo(String[] args)
6       {
7           String line = mIndentCheck[
8             getLineNo()];
9           String line1 =
10            getLine();
11          line1 =
12            getLine();
13          int i 
14           =
15            1;
16          // TODO: this should be illegal.
17          i =
18              3;
19          // TODO: add more testing
20      }
21  
22      private String[] mIndentCheck = null;
23      int getLineNo() {
24          return 1;
25      }
26      String getLine() {
27          return "";
28      }
29  }