aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/indentation/InputInvalidImportIndent.java
blob: f08a9170d98f6ee1bcfabf01358795fd047bff46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.puppycrawl.tools.checkstyle.checks.indentation; //indent:0 exp:0

import java.util //indent:0 exp:0
  .RandomAccess; import java.util.RandomAccess; //indent:2 exp:4 warn
 import java.util.RandomAccess; //indent:1 exp:0 warn
import java.util //indent:0 exp:0
                   .RandomAccess; //indent:19 exp:>=8

/**                                                                           //indent:0 exp:0
 * This test-input is intended to be checked using following configuration:   //indent:1 exp:1
 *                                                                            //indent:1 exp:1
 * basicOffset = 8                                                            //indent:1 exp:1
 * tabWidth = 4                                                               //indent:1 exp:1
 */                                                                           //indent:1 exp:1
public class InputInvalidImportIndent implements RandomAccess {} //indent:0 exp:0