1   package com.puppycrawl.tools.checkstyle.checks.indentation.indentation; //indent:0 exp:0
2   
3   import java.util.ArrayList; //indent:0 exp:0
4   import java.util.function.Supplier; //indent:0 exp:0
5   
6   
7   /** //indent:0 exp:0
8    * //indent:1 exp:1
9    * @author IljaDubinin //indent:1 exp:1
10   */ //indent:1 exp:1
11  public class InputIndentationEmptyArray //indent:0 exp:0
12  { //indent:0 exp:0
13  
14      public static void test() { //indent:4 exp:4
15          method(ArrayList::new); //indent:8 exp:8
16      } //indent:4 exp:4
17  
18      private static void method(Supplier<?> s) { //indent:4 exp:4
19      } //indent:4 exp:4
20  
21  } //indent:0 exp:0