aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/whitespace/whitespacearound/InputWhitespaceAroundVarargs.java
blob: 1334dfd7ab958966055635d663b00bc8bb59409b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
////////////////////////////////////////////////////////////////////////////////
// Test case file for checkstyle.
// Created: 2017
////////////////////////////////////////////////////////////////////////////////
package com.puppycrawl.tools.checkstyle.checks.whitespace.whitespacearound;

class InputWhitespaceAroundVarargs
{
    public static void main0(String... args) { }
    public static void main1(String ...args) { }
    public static void main2(String...args) { }
    public static void main3(String ... args) { }
    public void varargs(int...arr) { }
    public void doubleValue(int a, int...b) { }

}