aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/whitespace/nowhitespaceafter/InputNoWhitespaceAfterArrayDeclarations3.java
blob: 7ed823aa3081915dce7ffa9d54eddd9fc07ec39e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.puppycrawl.tools.checkstyle.checks.whitespace.nowhitespaceafter;

import java.lang.annotation.ElementType;
import java.lang.annotation.Target;

public class InputNoWhitespaceAfterArrayDeclarations3
{
    public void testWithAnnotationInMidle1(final char @AnnotationAfterTest [] a) {}//Correct
    public void testWithAnnotationInMidle2(final char@AnnotationAfterTest [] a) {}//Correct
    public void testWithAnnotationInMidle3(final char @AnnotationAfterTest[] a) {}//Correct
    public void testWithAnnotationInMidle4(final char@AnnotationAfterTest[]a) {}//Correct

    @Target(ElementType.TYPE_USE)
    @interface AnnotationAfterTest {
    }
}